mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-06-22 08:53:41 +02:00
Fix:Server crash when uploading or adding new podcast #3353
This commit is contained in:
parent
5b22d7430a
commit
fc276b330a
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ class PodcastController {
|
|||
}
|
||||
const payload = req.body
|
||||
|
||||
const library = await Database.libraryModel.findByPk(payload.libraryId)
|
||||
const library = await Database.libraryModel.findByIdWithFolders(payload.libraryId)
|
||||
if (!library) {
|
||||
Logger.error(`[PodcastController] Create: Library not found "${payload.libraryId}"`)
|
||||
return res.status(404).send('Library not found')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue