From ac9b97ee283f9fcc9283671d415b25f0f4cfa1a4 Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Wed, 6 Oct 2021 10:45:17 -0600 Subject: [PATCH] remove fields that we don't know how to populate --- appmgr/src/db/model.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/appmgr/src/db/model.rs b/appmgr/src/db/model.rs index 9d2c47a9d..98263aa24 100644 --- a/appmgr/src/db/model.rs +++ b/appmgr/src/db/model.rs @@ -46,11 +46,6 @@ impl Database { selected: None, }, unread_notification_count: 0, - specs: ServerSpecs { - cpu: "".to_owned(), - disk: "".to_owned(), - memory: "".to_owned(), - }, connection_addresses: ConnectionAddresses { tor: Vec::new(), clearnet: Vec::new(), @@ -82,7 +77,6 @@ pub struct ServerInfo { pub package_marketplace: Option, pub wifi: WifiInfo, pub unread_notification_count: u64, - pub specs: ServerSpecs, pub connection_addresses: ConnectionAddresses, pub share_stats: bool, }