Skip to content

Commit

Permalink
Merge pull request #446 from Iterable/feature/MOB-4447-protocol-fix
Browse files Browse the repository at this point in the history
[MOB-4447] feature/MOB-4447-protocol-fix
  • Loading branch information
Ayyanchira authored May 27, 2022
2 parents ad081e7 + 79020e4 commit ebcb25b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ static boolean isUrlOpenAllowed(@NonNull String url) {
return true;
}

for (String allowedProtocol : IterableApi.getInstance().config.allowedProtocols) {
for (String allowedProtocol : IterableApi.sharedInstance.config.allowedProtocols) {
if (urlProtocol.equals(allowedProtocol)) {
return true;
}
Expand Down

0 comments on commit ebcb25b

Please sign in to comment.