dont default to hiding avatars on new installs
This commit is contained in:
parent
e59a5b4449
commit
75814433a6
|
@ -468,7 +468,7 @@ function switchMesIDDisplay() {
|
|||
|
||||
function switchHideChatAvatars() {
|
||||
const value = localStorage.getItem(storage_keys.hideChatAvatars_enabled);
|
||||
power_user.hideChatAvatars_enabled = value === null ? true : value == 'true';
|
||||
power_user.hideChatAvatars_enabled = value === null ? false : value == 'true';
|
||||
/*console.log(`
|
||||
localstorage value:${value},
|
||||
poweruser after:${power_user.hideChatAvatars_enabled}`)
|
||||
|
|
Loading…
Reference in New Issue