Fix Library undefined sequelize

This commit is contained in:
advplyr 2023-08-16 14:49:06 -05:00
parent c707bcf0f6
commit 2ae86ab5bb

View File

@ -188,7 +188,7 @@ class Library extends Model {
static async getOldById(libraryId) { static async getOldById(libraryId) {
if (!libraryId) return null if (!libraryId) return null
const library = await this.findByPk(libraryId, { const library = await this.findByPk(libraryId, {
include: sequelize.models.libraryFolder include: this.sequelize.models.libraryFolder
}) })
if (!library) return null if (!library) return null
return this.getOldLibrary(library) return this.getOldLibrary(library)