feat: setting to hide the item page header session button

This commit is contained in:
Fredrik Burmester
2026-01-03 17:56:31 +01:00
parent 090e0cb170
commit 9cd55cf544
4 changed files with 31 additions and 8 deletions

View File

@@ -194,6 +194,8 @@ export type Settings = {
mergeNextUpAndContinueWatching: boolean;
// iOS video player selection
videoPlayerIOS: VideoPlayerIOS;
// Appearance
hideRemoteSessionButton: boolean;
};
export interface Lockable<T> {
@@ -268,6 +270,8 @@ export const defaultValues: Settings = {
mergeNextUpAndContinueWatching: false,
// iOS video player selection - default to VLC
videoPlayerIOS: VideoPlayerIOS.VLC,
// Appearance
hideRemoteSessionButton: false,
};
const loadSettings = (): Partial<Settings> => {