mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix: error if no episodes found in initial source
This commit is contained in:
parent
75eb4a3170
commit
b0d2d69d41
2 changed files with 10 additions and 0 deletions
|
@ -64,6 +64,15 @@ export const ReleasePlayer = (props: { id: number }) => {
|
||||||
async function _fetchInfo(url: string) {
|
async function _fetchInfo(url: string) {
|
||||||
const episodes = await _fetch(url);
|
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);
|
setEpisodeInfo(episodes.episodes);
|
||||||
setSelectedEpisode(episodes.episodes[0]);
|
setSelectedEpisode(episodes.episodes[0]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,3 +12,4 @@
|
||||||
## Исправлено
|
## Исправлено
|
||||||
|
|
||||||
- Исправлена горизонтальная прокрутка профиля на мобильных устройствах
|
- Исправлена горизонтальная прокрутка профиля на мобильных устройствах
|
||||||
|
- Исправлена ошибка если не найдено эпизодов в изначальном источнике
|
||||||
|
|
Loading…
Add table
Reference in a new issue