Update accessibility for numberd left variable
This commit is contained in:
parent
50ef9f167b
commit
9da141cdb8
@ -431,8 +431,10 @@ NSString * const KeyActionTypeOpen = @"openPage";
|
||||
if (!error.silentError) {
|
||||
|
||||
// Show alert
|
||||
MVMCoreAlertObject *alertObject = [[MVMCoreAlertObject alloc] initPopupAlertWithError:error isGreedy:NO];
|
||||
[[MVMCoreAlertHandler sharedAlertHandler] showAlertWithAlertObject:alertObject];
|
||||
[MVMCoreDispatchUtility performBlockOnMainThread:^{
|
||||
MVMCoreAlertObject *alertObject = [[MVMCoreAlertObject alloc] initPopupAlertWithError:error isGreedy:NO];
|
||||
[[MVMCoreAlertHandler sharedAlertHandler] showAlertWithAlertObject:alertObject];
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -57,8 +57,9 @@
|
||||
self.domain = domain;
|
||||
self.location = location;
|
||||
self.date = [NSDate date];
|
||||
self.applicationState = [UIApplication sharedApplication].applicationState;
|
||||
|
||||
[MVMCoreDispatchUtility performSyncBlockOnMainThread:^{
|
||||
self.applicationState = [UIApplication sharedApplication].applicationState;
|
||||
}];
|
||||
// We don't log server errors.
|
||||
if (![domain isEqualToString:ErrorDomainServer]) {
|
||||
self.logError = YES;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user