Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion nym-vpn-core/crates/nym-vpn-api-client/src/response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,6 @@ pub struct NymWellknownDiscoveryItemResponse {
pub feature_flags: Option<serde_json::Value>,
pub system_messages: Option<Vec<SystemMessageResponse>>,
pub system_configuration: Option<SystemConfigurationResponse>,
pub network_compatibility: Option<NetworkCompatibilityResponse>,
}

#[derive(Clone, Debug, serde::Serialize, serde::Deserialize, PartialEq, Eq)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,6 @@
"tauri": "1.21.0"
}
},
"network_compatibility": {
"core": "1.9.0",
"macos": "2.4.0",
"ios": "2.7.1",
"tauri": "1.9.0",
"android": "1.5.0"
},
"feature_flags": {
"domain_fronting": {
"enabled": "true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,6 @@
},
"statistics_api": "https://nym-statistics-api.nymtech.cc"
},
"network_compatibility": {
"core": "1.21.0",
"macos": "2.15.1",
"ios": "2.15.1",
"tauri": "1.21.0",
"android": "2.6.0"
},
"feature_flags": {
"domain_fronting": {
"enabled": "true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,6 @@
},
"statistics_api": "https://nym-statistics-api-staging.nymte.ch"
},
"network_compatibility": {
"core": "1.21.0",
"macos": "2.15.1",
"ios": "2.15.1",
"tauri": "1.21.0",
"android": "2.6.0"
},
"feature_flags": {
"domain_fronting": {
"enabled": "true"
Expand Down
9 changes: 1 addition & 8 deletions nym-vpn-core/crates/nym-vpn-network-config/src/discovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,14 +268,7 @@ mod tests {
"modal": "true"
}
}
],
"network_compatibility": {
"core": "1.1.1",
"ios": "1.1.1",
"macos": "1.1.1",
"tauri": "1.1.1",
"android": "1.1.1"
}
]
}"#;
let discovery: NymWellknownDiscoveryItemResponse = serde_json::from_str(json).unwrap();
let network: Discovery = discovery.try_into().unwrap();
Expand Down
Loading