browser-deeplink
browser-deeplink copied to clipboard
Not working with iOS
I've added this script in web page. When URL opens in Android Device it's working fine. But it is not working iOS device it redirects to APP store..
Same problem with me. But on iOS it works fine with chrome. Only problem is with Safar. @agravatfemina have you figured it out?
I confirm the bug on iOS, works in Chrome but not in Safari... is there a fix yet?
Any solution on this issue ?
same in 2020 :(
@hassanabidpk , @TheMrugraj , @agravatfemina , @jester6san any updates or workaround in this issue?
The problem is as follow:
// Safari only supports src redirect
// iOS supports all excepts src redirect
iframe.src = isDesktopSafari() ? getRedirectURL() : '';
iframe.onload = () => {
iframe.parentNode.removeChild(iframe);
window.location.href = getRedirectURL();
}