fix: count combined episodes

Jellyfin allows combined episodes, like `S01E01-E02`,
but seasons containing such episodes are only recognized
as `Partially Available`. This commit should fix that.
This commit is contained in:
darmiel
2022-12-04 00:20:32 +01:00
parent 1ceea3dcca
commit 64339e5f03
2 changed files with 15 additions and 3 deletions

View File

@@ -38,6 +38,7 @@ export interface JellyfinLibraryItem {
SeasonId?: string;
SeasonName?: string;
IndexNumber?: number;
IndexNumberEnd?: number;
ParentIndexNumber?: number;
MediaType: string;
}