Fix episode sorting

This commit is contained in:
Kylart 2019-06-13 00:31:47 +02:00
parent 390a067478
commit 9c003ad3d0
1 changed files with 1 additions and 1 deletions

View File

@ -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
})