Merge pull request #6006 from nextcloud/bugfix/fp-accountstate-warning

FileProvider: Add missing AccountState State case for notifying account state to extension
This commit is contained in:
Matthieu Gallien 2023-09-16 17:39:12 +02:00 committed by GitHub
commit a0365b3023
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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;