Browse Source

Merge branch 'release/5.0.0' into develop

Chocobozzz 1 year ago
parent
commit
8ca52bcc2c

+ 2 - 1
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

+ 4 - 1
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.`)
+    }
   }
 }