fix: error if no episodes found in initial source

This commit is contained in:
Kentai Radiquum 2024-09-21 02:00:55 +05:00
parent 75eb4a3170
commit b0d2d69d41
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 10 additions and 0 deletions

View file

@ -64,6 +64,15 @@ export const ReleasePlayer = (props: { id: number }) => {
async function _fetchInfo(url: string) {
const episodes = await _fetch(url);
if (episodes.episodes.length === 0) {
const remSources = sourcesInfo.filter((source) => source.id !== selectedSource.id);
setSourcesInfo(remSources);
setSelectedSource(remSources[0]);
return;
}
setEpisodeInfo(episodes.episodes);
setSelectedEpisode(episodes.episodes[0]);
}

View file

@ -12,3 +12,4 @@
## Исправлено
- Исправлена горизонтальная прокрутка профиля на мобильных устройствах
- Исправлена ошибка если не найдено эпизодов в изначальном источнике