fix: fixes #403 - cannot read shuffle of undefined error

This commit is contained in:
2024-05-20 12:18:52 +02:00
parent 3740ce5a12
commit b481108af1
3 changed files with 11 additions and 5 deletions

View File

@@ -14,5 +14,5 @@ export interface MediaInfo {
durationInSeconds?: number;
image: string;
favorite: boolean;
player: MediaPlayerInfo;
player?: MediaPlayerInfo;
}