diff --git a/node_modules/grunt-osis/tasks/convert.js b/node_modules/grunt-osis/tasks/convert.js
index e14e315..7baa696 100644
--- a/node_modules/grunt-osis/tasks/convert.js
+++ b/node_modules/grunt-osis/tasks/convert.js
@@ -143,6 +143,25 @@
var bookData = header('../../../',bookURL,clean(bookTitle),'book',bookBreadcrumb);
bookData += '
'
bibleBooks[b[i].osisID] = '- '+bookTitle+'
';
+ // quickfix for parsing issues with books that contain a single chapter
+ if(c.length == undefined){
+ // clone genesis book object
+ var clone = JSON.parse(JSON.stringify(b[0]));
+ var current_book = b[i]
+
+ // begin replacing clone of genesis properties with properties from current book
+ clone.osisID = current_book.osisID
+ clone.title = current_book.title
+ clone.verse = current_book.verse
+ // remove genesis chapter data
+ delete clone.chapter
+
+ // place current book chapter data into an array, stringify the object, parse and assign to chapter prop on clone
+ clone.chapter = JSON.parse(JSON.stringify([current_book.chapter]))
+
+ // set chapter reference to modified clone rather than referencing original parsed book object
+ c = clone.chapter
+ }
for(var j = 0; j < c.length; j++){
var body = '';
var v = c[j].verse;