consistent returns

This commit is contained in:
Jorrin 2024-04-20 11:36:38 +02:00
parent cfa3cfd072
commit 0a15bb2023
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ function useSeasons(
) {
const state = useAsync(async () => {
if (isLastEpisode) {
if (!mediaId) return;
if (!mediaId) return null;
const data = await getMetaFromId(MWMediaType.SERIES, mediaId);
if (data?.meta.type !== MWMediaType.SERIES) return null;
return data.meta.seasons;
@ -68,7 +68,7 @@ function useNextSeasonEpisode(
) {
const state = useAsync(async () => {
if (nextSeason) {
if (!mediaId) return;
if (!mediaId) return null;
const data = await getMetaFromId(
MWMediaType.SERIES,
mediaId,