diff --git a/selfdrive/common/params.cc b/selfdrive/common/params.cc index a1e86c7183..6a2a89038e 100644 --- a/selfdrive/common/params.cc +++ b/selfdrive/common/params.cc @@ -174,7 +174,6 @@ std::unordered_map keys = { {"GitRemote", PERSISTENT}, {"GithubSshKeys", PERSISTENT}, {"GithubUsername", PERSISTENT}, - {"GsmRoaming", PERSISTENT}, {"HardwareSerial", PERSISTENT}, {"HasAcceptedTerms", PERSISTENT}, {"IsDriverViewEnabled", CLEAR_ON_MANAGER_START}, diff --git a/selfdrive/ui/qt/offroad/networking.h b/selfdrive/ui/qt/offroad/networking.h index b6d1768473..02fd2d372f 100644 --- a/selfdrive/ui/qt/offroad/networking.h +++ b/selfdrive/ui/qt/offroad/networking.h @@ -61,8 +61,6 @@ private: WifiUI* wifiWidget; WifiManager* wifi = nullptr; - Params params; - protected: void showEvent(QShowEvent* event) override; diff --git a/selfdrive/ui/qt/offroad/wifiManager.cc b/selfdrive/ui/qt/offroad/wifiManager.cc index b5e2f03449..29a59f8b9c 100644 --- a/selfdrive/ui/qt/offroad/wifiManager.cc +++ b/selfdrive/ui/qt/offroad/wifiManager.cc @@ -372,7 +372,7 @@ QString WifiManager::getConnectionSsid(const QDBusObjectPath &path) { if (!ssid.isEmpty()) { return ssid; } - return result.value().value("connection").value("id").toString(); + return result.value().value("connection").value("id").toString(); // lte doesn't have an ssid } void WifiManager::initConnections() {