mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-03 00:06:46 +01:00
Fix:Debian pkg crash due to using toSorted that is only available in Node20+ #3024
This commit is contained in:
parent
bf893a56c9
commit
1337c60cde
@ -153,7 +153,7 @@ function parseChapters(_chapters) {
|
||||
title
|
||||
}
|
||||
})
|
||||
.toSorted((a, b) => a.start - b.start)
|
||||
.sort((a, b) => a.start - b.start)
|
||||
.map((chap, index) => {
|
||||
chap.id = index
|
||||
return chap
|
||||
|
Loading…
Reference in New Issue
Block a user