Update accessibility for numberd left variable

This commit is contained in:
Pfeil, Scott Robert 2020-06-12 14:43:02 -04:00
parent 50ef9f167b
commit 9da141cdb8
2 changed files with 7 additions and 4 deletions

View File

@ -431,8 +431,10 @@ NSString * const KeyActionTypeOpen = @"openPage";
if (!error.silentError) { if (!error.silentError) {
// Show alert // Show alert
MVMCoreAlertObject *alertObject = [[MVMCoreAlertObject alloc] initPopupAlertWithError:error isGreedy:NO]; [MVMCoreDispatchUtility performBlockOnMainThread:^{
[[MVMCoreAlertHandler sharedAlertHandler] showAlertWithAlertObject:alertObject]; MVMCoreAlertObject *alertObject = [[MVMCoreAlertObject alloc] initPopupAlertWithError:error isGreedy:NO];
[[MVMCoreAlertHandler sharedAlertHandler] showAlertWithAlertObject:alertObject];
}];
} }
} }

View File

@ -57,8 +57,9 @@
self.domain = domain; self.domain = domain;
self.location = location; self.location = location;
self.date = [NSDate date]; self.date = [NSDate date];
self.applicationState = [UIApplication sharedApplication].applicationState; [MVMCoreDispatchUtility performSyncBlockOnMainThread:^{
self.applicationState = [UIApplication sharedApplication].applicationState;
}];
// We don't log server errors. // We don't log server errors.
if (![domain isEqualToString:ErrorDomainServer]) { if (![domain isEqualToString:ErrorDomainServer]) {
self.logError = YES; self.logError = YES;