Add TV show name in media info and style changes

This commit is contained in:
ajnart
2023-03-18 20:29:47 +08:00
parent b87cfb4853
commit fdeac8eb29
4 changed files with 28 additions and 12 deletions

View File

@@ -10,6 +10,7 @@ export type GenericSessionInfo = {
export type GenericCurrentlyPlaying = {
name: string;
seasonName: string | undefined;
episodeName: string | undefined;
albumName: string | undefined;
episodeCount: number | undefined;
type: 'audio' | 'video' | 'tv' | 'movie' | undefined;