Updated function parseAndCheckForUpdates to pass Library Item rather then just the metadata object

This commit is contained in:
yuuzhan 2023-02-02 12:46:22 -05:00 committed by GitHub
parent 68621e0c07
commit 7a751b8f91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -252,7 +252,7 @@ class Book {
if (metadataAbs) {
Logger.debug(`[Book] Found metadata.abs file for "${this.metadata.title}"`)
const metadataText = await readTextFile(metadataAbs.metadata.path)
const abmetadataUpdates = abmetadataGenerator.parseAndCheckForUpdates(metadataText, this.metadata, 'book')
const abmetadataUpdates = abmetadataGenerator.parseAndCheckForUpdates(metadataText, this, 'book')
if (abmetadataUpdates && Object.keys(abmetadataUpdates).length) {
Logger.debug(`[Book] "${this.metadata.title}" changes found in metadata.abs file`, abmetadataUpdates)
metadataUpdatePayload = {
@ -489,4 +489,4 @@ class Book {
return this.metadata.authorName
}
}
module.exports = Book
module.exports = Book