mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-02-22 10:09:40 +00:00
Fix server crash on /me/progress/:libraryItemId/:episodeId? when episodeId is not passed in for a podcast library item #5058
This commit is contained in:
parent
b01facc034
commit
fa5fa7b788
1 changed files with 7 additions and 0 deletions
|
|
@ -782,7 +782,14 @@ class User extends Model {
|
||||||
error: 'Library item not found',
|
error: 'Library item not found',
|
||||||
statusCode: 404
|
statusCode: 404
|
||||||
}
|
}
|
||||||
|
} else if (libraryItem.mediaType !== 'book') {
|
||||||
|
Logger.error(`[User] createUpdateMediaProgress: library item ${progressPayload.libraryItemId} is not a book`)
|
||||||
|
return {
|
||||||
|
error: 'Library item is not a book',
|
||||||
|
statusCode: 400
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mediaItemId = libraryItem.media.id
|
mediaItemId = libraryItem.media.id
|
||||||
mediaProgress = libraryItem.media.mediaProgresses?.[0]
|
mediaProgress = libraryItem.media.mediaProgresses?.[0]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue