From 08e6e2204613e2be8c10dc93feb2f82a6618c613 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sat, 25 Oct 2025 02:00:22 -0400 Subject: [PATCH] net: lose fail tracking --- Services/DMSNetworkService.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Services/DMSNetworkService.qml b/Services/DMSNetworkService.qml index 8ca36156..20868b30 100644 --- a/Services/DMSNetworkService.qml +++ b/Services/DMSNetworkService.qml @@ -270,12 +270,8 @@ Singleton { connectionStatus = "cancelled" pendingConnectionSSID = "" } else if (isBadCredentials) { - const failedSSID = pendingConnectionSSID connectionStatus = "invalid_password" pendingConnectionSSID = "" - Qt.callLater(() => { - connectToWifi(failedSSID) - }) } else { if (connectionError) { ToastService.showError(I18n.tr("Failed to connect to ") + pendingConnectionSSID)