Fix includes

This commit is contained in:
advplyr 2024-11-02 13:02:40 -05:00
parent 7a1623e6a1
commit 7a49681dd2

View File

@ -873,11 +873,11 @@ class LibraryItem extends Model {
attributes: ['id', 'mediaType', 'mediaId', 'libraryId'], attributes: ['id', 'mediaType', 'mediaId', 'libraryId'],
include: [ include: [
{ {
model: this.bookModel, model: this.sequelize.models.book,
attributes: ['id', 'coverPath'] attributes: ['id', 'coverPath']
}, },
{ {
model: this.podcastModel, model: this.sequelize.models.podcast,
attributes: ['id', 'coverPath'] attributes: ['id', 'coverPath']
} }
] ]