fix: chromecast

This commit is contained in:
Fredrik Burmester
2025-02-23 14:35:00 +01:00
parent daf7f35196
commit 8e0e35afe3
8 changed files with 185 additions and 63 deletions

View File

@@ -145,6 +145,7 @@ export type Settings = {
safeAreaInControlsEnabled: boolean;
jellyseerrServerUrl?: string;
hiddenLibraries?: string[];
enableH265ForChromecast: boolean;
};
export interface Lockable<T> {
@@ -198,6 +199,7 @@ const defaultValues: Settings = {
safeAreaInControlsEnabled: true,
jellyseerrServerUrl: undefined,
hiddenLibraries: [],
enableH265ForChromecast: false,
};
const loadSettings = (): Partial<Settings> => {