Delete the QNetworkAccessManager when we're done with it

Apparently having this object around can lead to background
network scans happening that cause WiFi perf degradation.
This commit is contained in:
Cameron Gutman
2023-06-20 21:51:28 -05:00
parent e5aaa1fc53
commit df0c4c8208
6 changed files with 57 additions and 24 deletions
+1 -1
View File
@@ -16,5 +16,5 @@ private slots:
void handleMappingListFetched(QNetworkReply* reply);
private:
QNetworkAccessManager m_Nam;
QNetworkAccessManager* m_Nam;
};