diff --git a/client/store/scanners.js b/client/store/scanners.js index ebe3af87d..2d3d465ca 100644 --- a/client/store/scanners.js +++ b/client/store/scanners.js @@ -63,7 +63,12 @@ export const state = () => ({ value: 'itunes' } ], - coverOnlyProviders: [] + coverOnlyProviders: [ + { + text: 'AudiobookCovers.com', + value: 'audiobookcovers' + } + ] }) export const getters = { diff --git a/server/finders/BookFinder.js b/server/finders/BookFinder.js index 5bab76118..6b8427c05 100644 --- a/server/finders/BookFinder.js +++ b/server/finders/BookFinder.js @@ -23,7 +23,7 @@ class BookFinder { this.audiobookCovers = new AudiobookCovers() this.customProviderAdapter = new CustomProviderAdapter() - this.providers = ['google', 'itunes', 'openlibrary', 'fantlab', 'audible', 'audible.ca', 'audible.uk', 'audible.au', 'audible.fr', 'audible.de', 'audible.jp', 'audible.it', 'audible.in', 'audible.es'] + this.providers = ['google', 'itunes', 'openlibrary', 'fantlab', 'audiobookcovers', 'audible', 'audible.ca', 'audible.uk', 'audible.au', 'audible.fr', 'audible.de', 'audible.jp', 'audible.it', 'audible.in', 'audible.es'] this.verbose = false }