diff --git a/package.json b/package.json index d595576..0f2593b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Miru", - "version": "3.8.2", + "version": "3.8.3", "author": "ThaUnknown_ ", "description": "Stream anime torrents, real-time with no waiting for downloads.", "main": "src/index.js", diff --git a/src/renderer/src/modules/anime.js b/src/renderer/src/modules/anime.js index 39b3713..2c2d2c1 100644 --- a/src/renderer/src/modules/anime.js +++ b/src/renderer/src/modules/anime.js @@ -112,7 +112,7 @@ function constructChapters (results, duration) { } } - chapters.sort((a, b) => a - b) + chapters.sort((a, b) => a.start - b.start) return chapters }