diff --git a/server/providers/GoogleBooks.js b/server/providers/GoogleBooks.js index 975528ebe..54da18233 100644 --- a/server/providers/GoogleBooks.js +++ b/server/providers/GoogleBooks.js @@ -25,7 +25,7 @@ class GoogleBooks { publisher, publishedYear: publisherDate ? publisherDate.split('-')[0] : null, description, - cover: imageLinks && imageLinks.thumbnail ? imageLinks.thumbnail : null, + cover: imageLinks && imageLinks.extraLarge ? imageLinks.extraLarge : null, genres: categories && Array.isArray(categories) ? [...categories] : null, isbn: this.extractIsbn(industryIdentifiers) } @@ -51,4 +51,4 @@ class GoogleBooks { } } -module.exports = GoogleBooks \ No newline at end of file +module.exports = GoogleBooks