Add:Region support for audible chapter lookup

This commit is contained in:
advplyr 2022-10-15 15:31:07 -05:00
parent 067d90474b
commit ce4e48cbd7
5 changed files with 34 additions and 12 deletions

View file

@ -209,8 +209,8 @@ class BookFinder {
return covers
}
findChapters(asin) {
return this.audnexus.getChaptersByASIN(asin)
findChapters(asin, region) {
return this.audnexus.getChaptersByASIN(asin, region)
}
}
module.exports = BookFinder