[ios] Fixed crush after attempting to open incorrect url in banner.

This commit is contained in:
VladiMihaylenko 2016-12-28 14:53:46 +03:00 committed by Илья Гречухин
parent 933196fc67
commit 8846a23bc3
2 changed files with 14 additions and 1 deletions

View file

@ -4,6 +4,7 @@
#import "UIColor+MapsMeColor.h"
#import "UIImageView+Coloring.h"
#import <Crashlytics/Crashlytics.h>
#import <SafariServices/SafariServices.h>
@implementation NSObject (Optimized)
@ -300,7 +301,16 @@
- (void)openUrl:(NSURL *)url
{
NSString * scheme = url.scheme;
NSAssert(([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]), @"Incorrect url's scheme!");
if ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"])
{
NSAssert(false, @"Incorrect url's scheme!");
NSError * err = [[NSError alloc] initWithDomain:kMapsmeErrorDomain
code:0
userInfo:@{@"Trying to open incorrect url" : url.absoluteString}];
[[Crashlytics sharedInstance] recordError:err];
return;
}
if (isIOS8)
{
UIApplication * app = [UIApplication sharedApplication];
@ -308,6 +318,7 @@
[app openURL:url];
return;
}
SFSafariViewController * svc = [[SFSafariViewController alloc] initWithURL:url];
svc.delegate = self;
[self.navigationController presentViewController:svc animated:YES completion:nil];

View file

@ -6,6 +6,8 @@ static NSString * const BOOKMARK_CATEGORY_DELETED_NOTIFICATION =
static NSString * const BOOKMARK_DELETED_NOTIFICATION = @"BookmarkDeletedNotification";
static NSString * const kMapsmeErrorDomain = @"com.mapsme.error";
static CGFloat const kDefaultAnimationDuration = .2;
static inline BOOL firstVersionIsLessThanSecond(NSString * first, NSString * second)