Discover the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring stories, viral videos, and so much more from users.
I am running Vger.app on Safari, current version on a MacBook Air. I keep seeing the badge for an update, but when I run the update, the badge is still there. It is version 1.25.0.
Yeah, safari has a bug where when the SSL certificate renews, the service worker won’t update. Super annoying. But it is tracked on GitHub and I will be taking a look soon. Probably just have to blow away the service worker manually for Safari ಥ_ಥ
edit: Can you try pasting the following code into Safari's JS console on the vger.app site? Let me know if the notice disappears.
(async function() {
try {
// Get all service worker registrations
const registrations = await navigator.serviceWorker.getRegistrations();
// Unregister all service workers concurrently using Promise.all
await Promise.all(
registrations.map((registration) => registration.unregister())
);
} finally {
// After unregistering, reload the page
window.location.href = "/";
}
})();