Add: Bookmarks, Fix: Playback rate updating, Fix: Sleep timer countdown, Fix: Prev chapter btn, Change: Loading indicator for new audio player, Fix: UI alignment issues #26

This commit is contained in:
advplyr
2021-11-02 19:44:42 -05:00
parent 08195af0dd
commit 65706a52fc
23 changed files with 600 additions and 53 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ export const getters = {
if (settings.mobileOrderBy === 'recent') {
return sort(filtered)[direction]((ab) => {
var abprogress = rootGetters['user/getMostRecentAudiobookProgress'](ab.id)
var abprogress = rootGetters['user/getMostRecentUserAudiobookData'](ab.id)
if (!abprogress) return 0
return abprogress.lastUpdate
})