diff --git a/app/javascript/flavours/glitch/main.js b/app/javascript/flavours/glitch/main.js index f1e10df342..b8095f8192 100644 --- a/app/javascript/flavours/glitch/main.js +++ b/app/javascript/flavours/glitch/main.js @@ -25,17 +25,17 @@ function main() { import('flavours/glitch/initial_state'), ]); - const wb = new Workbox('/sw.js'); + if (me) { + const wb = new Workbox('/sw.js'); - try { - await wb.register(); - } catch (err) { - console.error(err); + try { + await wb.register(); + } catch (err) { + console.error(err); - return; - } + return; + } - if (me) { const registerPushNotifications = await import('flavours/glitch/actions/push_notifications'); store.dispatch(registerPushNotifications.register());