Merge pull request #1110 from keaganhilliard/tone-json

Added tone json file support
This commit is contained in:
advplyr
2022-11-05 13:13:49 -05:00
committed by GitHub
5 changed files with 98 additions and 36 deletions
+2 -1
View File
@@ -398,7 +398,8 @@ class LibraryItemController {
}
const useTone = req.query.tone === '1'
this.audioMetadataManager.updateMetadataForItem(req.user, req.libraryItem, useTone)
const forceEmbedChapters = req.query.forceEmbedChapters === '1'
this.audioMetadataManager.updateMetadataForItem(req.user, req.libraryItem, useTone, forceEmbedChapters)
res.sendStatus(200)
}