From 6ef73e24d780ed486f9f0b0526670f87f9239f70 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 29 Aug 2023 17:25:39 +0800 Subject: [PATCH] [FileProvider] Add missing AccountState State case for notifying account state to extension Signed-off-by: Claudio Cambra --- src/gui/macOS/fileprovidersocketcontroller.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/macOS/fileprovidersocketcontroller.cpp b/src/gui/macOS/fileprovidersocketcontroller.cpp index 9fa7f2b68..4790123e3 100644 --- a/src/gui/macOS/fileprovidersocketcontroller.cpp +++ b/src/gui/macOS/fileprovidersocketcontroller.cpp @@ -148,6 +148,7 @@ void FileProviderSocketController::slotAccountStateChanged(const AccountState::S break; case AccountState::SignedOut: case AccountState::AskingCredentials: + case AccountState::RedirectDetected: // Notify File Provider that it should show the not authenticated message sendNotAuthenticated(); break;