From: Chocobozzz Date: Mon, 23 Jan 2023 14:24:58 +0000 (+0100) Subject: Fix auto play setting for anonymous users X-Git-Tag: v5.1.0-rc.1~380^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=b1d8261c458f5c9a800539d0aebc749e53dfcdbe;p=github%2FChocobozzz%2FPeerTube.git Fix auto play setting for anonymous users --- diff --git a/client/src/app/core/users/user-local-storage.service.ts b/client/src/app/core/users/user-local-storage.service.ts index a047efe8e..d5fd1e447 100644 --- a/client/src/app/core/users/user-local-storage.service.ts +++ b/client/src/app/core/users/user-local-storage.service.ts @@ -125,7 +125,8 @@ export class UserLocalStorageService { const localStorageKeys: { [ id in keyof UserUpdateMe ]: string } = { nsfwPolicy: UserLocalStorageKeys.NSFW_POLICY, p2pEnabled: UserLocalStorageKeys.P2P_ENABLED, - autoPlayNextVideo: UserLocalStorageKeys.AUTO_PLAY_VIDEO, + autoPlayVideo: UserLocalStorageKeys.AUTO_PLAY_VIDEO, + autoPlayNextVideo: UserLocalStorageKeys.AUTO_PLAY_NEXT_VIDEO, autoPlayNextVideoPlaylist: UserLocalStorageKeys.AUTO_PLAY_VIDEO_PLAYLIST, theme: UserLocalStorageKeys.THEME, videoLanguages: UserLocalStorageKeys.VIDEO_LANGUAGES diff --git a/client/src/app/shared/shared-user-settings/user-video-settings.component.ts b/client/src/app/shared/shared-user-settings/user-video-settings.component.ts index af0870f12..ed6e7fffd 100644 --- a/client/src/app/shared/shared-user-settings/user-video-settings.component.ts +++ b/client/src/app/shared/shared-user-settings/user-video-settings.component.ts @@ -127,6 +127,9 @@ export class UserVideoSettingsComponent extends FormReactive implements OnInit, private updateAnonymousProfile (details: UserUpdateMe) { this.userService.updateMyAnonymousProfile(details) - if (this.notifyOnUpdate) this.notifier.success($localize`Display/Video settings updated.`) + + if (this.notifyOnUpdate) { + this.notifier.success($localize`Display/Video settings updated.`) + } } }