mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-04 10:14:36 +02:00
Removed a noisy log and limit chapter embedding to items with only 1 audiofile
This commit is contained in:
parent
d57effe97c
commit
586c8a550a
2 changed files with 2 additions and 4 deletions
|
@ -72,10 +72,9 @@ module.exports.getToneMetadataObject = (libraryItem, chaptersFile) => {
|
|||
return metadataObject
|
||||
}
|
||||
|
||||
module.exports.writeToneMetadataJsonFile = (libraryItem, filePath) => {
|
||||
module.exports.writeToneMetadataJsonFile = (libraryItem, chapters, filePath) => {
|
||||
const bookMetadata = libraryItem.media.metadata
|
||||
const coverPath = libraryItem.media.coverPath
|
||||
const chapters = libraryItem.media.chapters
|
||||
|
||||
const metadataObject = {
|
||||
'album': bookMetadata.title || '',
|
||||
|
@ -139,7 +138,6 @@ module.exports.writeToneMetadataJsonFile = (libraryItem, filePath) => {
|
|||
|
||||
module.exports.tagAudioFile = (filePath, payload) => {
|
||||
return tone.tag(filePath, payload).then((data) => {
|
||||
Logger.info('Tone results: ', data)
|
||||
return true
|
||||
}).catch((error) => {
|
||||
Logger.error(`[toneHelpers] tagAudioFile: Failed for "${filePath}"`, error)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue