snapdrop

A Progressive Web App for local file sharing
git clone http://git.hanabi.in/repos/snapdrop.git
Log | Files | Refs | README | LICENSE

commit eee098e723fc4d97b1af692df952d0abde989e07
parent 17cb706c317b8ae651de8fe35277ce5d7cef511b
Author: RobinLinus <robinlinus@users.noreply.github.com>
Date:   Thu, 11 Oct 2018 00:08:07 +0200

Don’t use ServiceWorker on iOS

Diffstat:
Mclient/scripts/ui.js | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/client/scripts/ui.js b/client/scripts/ui.js @@ -3,6 +3,7 @@ const $$ = query => document.body.querySelector(query); const isURL = text => /^((https?:\/\/|www)[^\s]+)/g.test(text.toLowerCase()); window.isDownloadSupported = (typeof document.createElement('a').download !== 'undefined'); window.isProductionEnvironment = !window.location.host.startsWith('localhost'); +window.iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream; class PeersUI { @@ -457,7 +458,8 @@ document.copy = text => { } -if ('serviceWorker' in navigator) { +if ('serviceWorker' in navigator && !window.iOS) { + // SW on iOS is buggy. see: https://stackoverflow.com/questions/18103103/failed-to-load-resource-plugin-handled-load-on-ios navigator.serviceWorker .register('/service-worker.js') .then(serviceWorker => {