Skip to content

Commit ebcb25b

Browse files
authored
Merge pull request #446 from Iterable/feature/MOB-4447-protocol-fix
[MOB-4447] feature/MOB-4447-protocol-fix
2 parents ad081e7 + 79020e4 commit ebcb25b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iterableapi/src/main/java/com/iterable/iterableapi/IterableUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ static boolean isUrlOpenAllowed(@NonNull String url) {
285285
return true;
286286
}
287287

288-
for (String allowedProtocol : IterableApi.getInstance().config.allowedProtocols) {
288+
for (String allowedProtocol : IterableApi.sharedInstance.config.allowedProtocols) {
289289
if (urlProtocol.equals(allowedProtocol)) {
290290
return true;
291291
}

0 commit comments

Comments
 (0)