mirror of https://github.com/Kylart/KawAnime.git
Fix episode sorting
This commit is contained in:
parent
390a067478
commit
9c003ad3d0
|
@ -81,7 +81,7 @@ export default {
|
|||
return acc
|
||||
}, [])
|
||||
.map((file) => {
|
||||
file.eps && file.eps.length && file.eps.sort((a, b) => +b - +a)
|
||||
file.eps && file.eps.length && file.eps.sort((a, b) => +a.ep - +b.ep)
|
||||
|
||||
return file
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue