mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
consistent returns
This commit is contained in:
parent
cfa3cfd072
commit
0a15bb2023
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue