You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A refactoring 3 weeks ago breaks Immich for browsers who have the local storage thingie . The variable was renamed from item to theme but item was still used in a branch. Just change the variable name in the else-if branch
constcolorThemeKeyName='color-theme';lettheme=localStorage.getItem(colorThemeKeyName);if(!theme){theme={value: 'light',system: true};}elseif(theme==='dark'||theme==='light'){theme={value: item,system: false};// <- CHANGE TO theme INSTEAD OF itemlocalStorage.setItem(colorThemeKeyName,JSON.stringify(theme));}else{theme=JSON.parse(theme);}
Work around: Remove the local storage thingie via dev tools.
Thx
The OS that Immich Server is running on
Version of Immich Server
master
Version of Immich Mobile App
Platform with the issue
Server
Web
Mobile
Your docker-compose.yml content
not needed
Your .env content
not needed
Reproduction steps
Trivial bug
Relevant log output
No response
Additional information
No response
The text was updated successfully, but these errors were encountered:
The bug
A refactoring 3 weeks ago breaks Immich for browsers who have the local storage thingie . The variable was renamed from
item
totheme
butitem
was still used in a branch. Just change the variable name in the else-if branchWork around: Remove the local storage thingie via dev tools.
Thx
The OS that Immich Server is running on
Version of Immich Server
master
Version of Immich Mobile App
Platform with the issue
Your docker-compose.yml content
not needed
Your .env content
Reproduction steps
Trivial bug
Relevant log output
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: