Fix filePathToPOSIX used in scan, updates for music track page

This commit is contained in:
advplyr 2023-01-06 17:10:55 -06:00
parent 9a85ad1f6b
commit 878330b4fb
4 changed files with 83 additions and 25 deletions

View file

@ -112,7 +112,7 @@ class Podcast {
return false
}
get duration() {
var total = 0
let total = 0
this.episodes.forEach((ep) => total += ep.duration)
return total
}