remove fields that we don't know how to populate

This commit is contained in:
Keagan McClelland
2021-10-06 10:45:17 -06:00
committed by Aiden McClelland
parent c3037d6251
commit ac9b97ee28

View File

@@ -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<Url>,
pub wifi: WifiInfo,
pub unread_notification_count: u64,
pub specs: ServerSpecs,
pub connection_addresses: ConnectionAddresses,
pub share_stats: bool,
}