(enhance) データセーバーモード有効時はGIFアバターを停止

This commit is contained in:
kakkokari-gtyih 2023-10-27 23:45:47 +09:00
parent 8a2309ba7d
commit 3f56b0f574
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ const bound = $computed(() => props.link
? { to: userPage(props.user), target: props.target }
: {});
const url = $computed(() => defaultStore.state.disableShowingAnimatedImages
const url = $computed(() => (defaultStore.state.disableShowingAnimatedImages || defaultStore.state.enableDataSaverMode)
? getStaticImageUrl(props.user.avatarUrl)
: props.user.avatarUrl);