-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS Integration Validator 2.0 #1439
base: master
Are you sure you want to change the base?
Changes from all commits
0c97306
5239c1b
4b0e2cd
77229f6
6bbd3ba
f9af58b
13d38e4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,8 +159,17 @@ + (BOOL)compareUriSchemes : (NSString *) serverUriScheme { | |
if ([uriScheme isEqualToString:serverUriSchemeWithoutSuffix]) { | ||
return true; } | ||
} | ||
// If no Uri schemes match the one set on the dashboard | ||
return false; | ||
} | ||
return false; | ||
} | ||
|
||
+ (BOOL)compareLinkDomain:(NSString *)serverLinkDomain { | ||
NSArray *linkDomains = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"branch_universal_link_domains"]; | ||
|
||
for (NSString *domain in linkDomains) { | ||
if ([domain isEqualToString:serverLinkDomain]) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sharath-branch linkdomains strings can have prefix There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is checking only the info.plist actually and not the associated domains. We recommend adding the prefix |
||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sharath-branch At line no. 162, if code returns from here, it will not check second and more
urlType
in arrayurlTypes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks!