consistent returns

This commit is contained in:
Jorrin 2024-04-20 11:36:38 +02:00
parent cfa3cfd072
commit 0a15bb2023

View File

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