diff options
Diffstat (limited to 'lib/parse/parseBook.js')
-rw-r--r-- | lib/parse/parseBook.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/parse/parseBook.js b/lib/parse/parseBook.js index 84a4038..a92f39e 100644 --- a/lib/parse/parseBook.js +++ b/lib/parse/parseBook.js @@ -42,7 +42,7 @@ function parseMultilingualBook(book) { .then(parseBookContent) .then(function(result) { // Ignore content of this book when generating parent book - ignore.add(langID + '/**'); + ignore = ignore.add(langID + '/**'); currentBook = currentBook.set('ignore', ignore); return currentBook.addLanguageBook(langID, result); |