fix idiotism

This commit is contained in:
castdrian 2023-06-20 19:39:16 +02:00
parent 5661a7873a
commit 3f241c2d07

View File

@ -99,13 +99,18 @@ export async function getMetaFromId(
const episodes = await Tmdb.getEpisodes(
details.id.toString(),
season?.season_number ?? 1
season.season_number === null || season.season_number === 0
? 1
: season.season_number
);
if (season && episodes) {
seasonData = {
id: season.id.toString(),
season_number: season.season_number,
season_number:
season.season_number === null || season.season_number === 0
? 1
: season.season_number,
title: season.name,
episodes,
};