fix: can't play local media bug

appeared after playback rewrite
This commit is contained in:
Fredrik Burmester
2024-08-21 23:21:53 +02:00
parent e216c8392f
commit b1062628d9
7 changed files with 22 additions and 77 deletions

View File

@@ -1,10 +0,0 @@
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
import { atom } from "jotai";
export const playingAtom = atom(false);
export const fullScreenAtom = atom(false);
export const showCurrentlyPlayingBarAtom = atom(false);
export const currentlyPlayingItemAtom = atom<{
item: BaseItemDto;
playbackUrl: string;
} | null>(null);