1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix rewatching in next up checked when disabled

This commit is contained in:
Bill Thornton 2022-03-29 14:53:02 -04:00
parent b4fce063b0
commit a514d168bf

View file

@ -468,7 +468,7 @@ export class UserSettings {
return this.set('enableRewatchingInNextUp', val, false); return this.set('enableRewatchingInNextUp', val, false);
} }
return this.get('enableRewatchingInNextUp', false); return this.get('enableRewatchingInNextUp', false) === 'true';
} }
/** /**