Android add media progress sync for server sessions

This commit is contained in:
advplyr 2022-04-08 20:27:54 -05:00
parent 9ad351f0d7
commit 526fca98b9
10 changed files with 290 additions and 317 deletions

View file

@ -26,7 +26,7 @@ export const getters = {
if (!state.user || !state.user.mediaProgress) return null
return state.user.mediaProgress.find(li => {
if (episodeId && li.episodeId !== episodeId) return false
return li.id == libraryItemId
return li.libraryItemId == libraryItemId
})
},
getUserBookmarksForItem: (state) => (libraryItemId) => {