Post

Replies

Boosts

Views

Activity

Reply to iOS 14 Webshare API Broken
Simple solution for now is to reload page if user tries to share again. Sharing again will reject the second share promise and you can then reload the page. The user will probably just click the button again and this time it will work. navigator.share(...) .then(() => { // this will never happen in IOS 14.0.1 }) .catch(error => { //this will catch the second share attempt window.location.reload(true); // now share works again });
Oct ’20