A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Redirecting message

+2 -2
+2 -2
src/Javascript/index.js
··· 23 23 // Redirect to HTTPS if using the `diffuse.sh` domain (subdomains included) 24 24 if (location.hostname.endsWith("diffuse.sh") && location.protocol === "http:") { 25 25 location.href = location.href.replace("http://", "https://") 26 - } 26 + failure("Just a moment, redirecting to HTTPS.") 27 27 28 28 // Secure context & Service worker 29 - if (!self.isSecureContext) { 29 + } else if (!self.isSecureContext) { 30 30 failure(` 31 31 This app only works on a <a class="underline" target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts#When_is_a_context_considered_secure">secure context</a>, HTTPS & localhost, and modern browsers. 32 32 `)