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