Changed back url detection - now we're using first found scheme with mapswithme keyword in scheme id

This commit is contained in:
Alex Zolotarev 2013-08-14 21:54:41 +03:00
parent 5d9f7c2123
commit 5440821606

View file

@ -188,8 +188,8 @@ static NSString * MWMUrlScheme = @"mapswithme://";
{
for (NSString * scheme in [dict objectForKey:@"CFBundleURLSchemes"])
{
if ([scheme rangeOfString:@"mapswithme" options:NSCaseInsensitiveSearch].location != NSNotFound)
return scheme;
// We use the first scheme in this list, you can change this behavior if needed
return scheme;
}
}
}