mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-04-21 00:12:05 +00:00
Fix episode selection on web API
This commit is contained in:
parent
c3335db366
commit
350337fdda
1 changed files with 6 additions and 0 deletions
|
|
@ -2105,6 +2105,12 @@ export default class Crunchy implements ServiceClass {
|
|||
item.playback = item.__links__.streams.href;
|
||||
}
|
||||
}
|
||||
if (item.streams_link) {
|
||||
epMeta.data[0].playback = item.streams_link;
|
||||
if(!item.playback) {
|
||||
item.playback = item.streams_link;
|
||||
}
|
||||
}
|
||||
// find episode numbers
|
||||
if(item.playback && ((but && !doEpsFilter.isSelected([epNum, item.id])) || (all || (doEpsFilter.isSelected([epNum, item.id])) && !but))) {
|
||||
if (Object.prototype.hasOwnProperty.call(ret, key)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue