Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save zatricky/f6798c548129d37eb5fe7f2b68a74e92 to your computer and use it in GitHub Desktop.

Select an option

Save zatricky/f6798c548129d37eb5fe7f2b68a74e92 to your computer and use it in GitHub Desktop.
Immich notifications-bug workaround userscript - sets the appVersion in advance to one that prevents the notification from triggering
// ==UserScript==
// @name Immich v2.2.3 Version Notification TEMPORARY WORKAROUND
// @namespace https://github.com/zatricky
// @version 0.1
// @description Prevents rendering loop from version notification bug in Immich v2.2.3. ONLY LET THIS RUN ONCE - THEN DISABLE IT ONCE YOU ARE ABLE TO USE IMMICH AGAIN
// @author https://github.com/zatricky
// @match https://your-immich-host/*
// @match https://your-immich-host/admin/*
// @match http://your-immich-host:2283/*
// @match http://your-immich-host:2283/admin/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
// Set appVersion to the latest version before app loads
localStorage.setItem('appVersion', 'v2.3.1');
console.log('[Immich Fix] Set appVersion to v2.3.1 to prevent notification');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment