Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
koenoe committed Dec 8, 2024
1 parent 3a46c03 commit 67fe9b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/db/watched/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export type WatchedItem = Readonly<{
country: string;
episodeNumber: number;
genreIds: string;
language: string;
posterImage?: string; // deprecated
posterPath: string;
runtime: number;
Expand Down Expand Up @@ -63,6 +64,7 @@ const createWatchedItem = ({
country: tvSeries.originCountry,
episodeNumber,
genreIds: tvSeries.genres.map((genre) => genre.id).join(','),
language: tvSeries.originalLanguage,
posterPath: tvSeries.posterPath,
runtime,
seasonNumber,
Expand Down

0 comments on commit 67fe9b3

Please sign in to comment.