diff --git a/CHANGES.rst b/CHANGES.rst index 2a05fcbfc..100fb54b0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +Changes in 0.11.4 (2020-05-08) +=============================================== + +Bug fix: + * App asks to verify all devices on every startup for no valid reason (#3221). + Changes in 0.11.3 (2020-05-07) =============================================== diff --git a/Riot/Modules/TabBar/MasterTabBarController.m b/Riot/Modules/TabBar/MasterTabBarController.m index a7acba518..6d95e0695 100644 --- a/Riot/Modules/TabBar/MasterTabBarController.m +++ b/Riot/Modules/TabBar/MasterTabBarController.m @@ -1072,7 +1072,7 @@ for (MXDeviceInfo *device in devices) { - if (device.trustLevel.localVerificationStatus == MXDeviceUnknown) + if (!device.trustLevel.isCrossSigningVerified) { isUserHasOneUnverifiedDevice = YES; break;