mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-05 07:27:42 +02:00
MESSENGER-5279 call isAppversionOutdated after maintenance was updated
This commit is contained in:
@@ -338,8 +338,6 @@ NSString *const RecentsViewControllerDataReadyNotification = @"RecentsViewContro
|
||||
{
|
||||
[super viewDidAppear:animated];
|
||||
|
||||
[self checkAppVersionDeprecated];
|
||||
|
||||
// Release the current selected item (if any) except if the second view controller is still visible.
|
||||
if (self.splitViewController.isCollapsed)
|
||||
{
|
||||
@@ -2526,6 +2524,11 @@ NSString *const RecentsViewControllerDataReadyNotification = @"RecentsViewContro
|
||||
|
||||
[self presentViewController:errorAlert animated:YES completion:nil];
|
||||
}
|
||||
|
||||
// bwi #5276: if outdated was shown but our app version is valid that means we have updated and have to reset outdated shown
|
||||
if (BWIBuildSettings.shared.bwiCheckAppVersion && !appVersionsService.isCurrentAppVersionOutdated && appVersionsService.wasOutdatedAlertShown) {
|
||||
[appVersionsService setOutdatedAlertShown:false];
|
||||
}
|
||||
}
|
||||
|
||||
-(void) logout {
|
||||
|
||||
Reference in New Issue
Block a user