fix syntax

This commit is contained in:
David 2017-05-15 21:47:07 -04:00
parent 1dd2c66884
commit 6d00d0ae6a
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ function normalizeGoogleData(book) {
return {
title: book.subtitle ? book.title + ': ' + book.subtitle : book.title,
author: _.join(book.authors, ', '),
authorLast: _.join(book.authors ? _.lowerCase(_.head(_.reverse(_.split(book.authors[0], ' ')))), '') : '',
authorLast: book.authors ? _.join(_.lowerCase(_.head(_.reverse(_.split(book.authors[0], ' ')))), '') : '',
"isbn-10": _.find(book.industryIdentifiers, { type: "ISBN_10" })
? _.find(book.industryIdentifiers, { type: "ISBN_10" }).identifier
: '',