dont default to hiding avatars on new installs

This commit is contained in:
RossAscends 2024-04-25 14:42:48 +09:00
parent e59a5b4449
commit 75814433a6
1 changed files with 1 additions and 1 deletions

View File

@ -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}`)