[MAPSME-6429] [ios] Fixed internal alert error.

This commit is contained in:
Ilya Grechuhin 2018-01-11 17:02:51 +03:00 committed by Roman Kuznetsov
parent 9e58c415cc
commit 44f974b71c

View file

@ -96,7 +96,7 @@ NSString * getVerifier(NSString * urlString)
{
dispatch_async(dispatch_get_main_queue(), ^{
[self stopSpinner];
[self.alertController presentInternalErrorAlert];
[[MWMAlertViewController activeAlertController] presentInternalErrorAlert];
});
LOG(LWARNING, ("Can't loadAuthorizationPage", ex.what()));
}
@ -205,7 +205,7 @@ NSString * getVerifier(NSString * urlString)
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
[self.alertController presentInternalErrorAlert];
[[MWMAlertViewController activeAlertController] presentInternalErrorAlert];
}
@end