mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-15 05:35:07 +01:00
consistent returns
This commit is contained in:
parent
cfa3cfd072
commit
0a15bb2023
@ -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 New Issue
Block a user