diff --git a/CHANGES.rst b/CHANGES.rst index b925b6529..753a525f5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,7 @@ Changes to be released in next version 🐛 Bugfix * Timeline: Hide encrypted history (pre-invite) (#3660). * Fix floating action buttons' images. + * Complete Security: Let the authentication flow display it if this flow is not complete yet. ⚠️ API Changes * diff --git a/Riot/Modules/TabBar/MasterTabBarController.m b/Riot/Modules/TabBar/MasterTabBarController.m index 4700adf4e..7bde05040 100644 --- a/Riot/Modules/TabBar/MasterTabBarController.m +++ b/Riot/Modules/TabBar/MasterTabBarController.m @@ -1032,7 +1032,9 @@ - (void)presentVerifyCurrentSessionAlertIfNeededWithSession:(MXSession*)session { - if (RiotSettings.shared.hideVerifyThisSessionAlert || self.reviewSessionAlertHasBeenDisplayed) + if (RiotSettings.shared.hideVerifyThisSessionAlert + || self.reviewSessionAlertHasBeenDisplayed + || self.authenticationInProgress) { return; }