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
|
@ -44,7 +44,7 @@ class MiscController {
|
|||
const files = Object.values(req.files)
|
||||
const { title, author, series, folder: folderId, library: libraryId } = req.body
|
||||
|
||||
const library = await Database.libraryModel.findByPk(libraryId)
|
||||
const library = await Database.libraryModel.findByIdWithFolders(libraryId)
|
||||
if (!library) {
|
||||
return res.status(404).send(`Library not found with id ${libraryId}`)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue