Skip to content

Commit

Permalink
Merge branch 'hotfix-8.1'
Browse files Browse the repository at this point in the history
Former-commit-id: a1aab26
  • Loading branch information
da1nerd committed Jun 15, 2016
2 parents 9668551 + 4f3afa0 commit 5ffaaff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "translationstudio",
"productName": "translationStudio",
"version": "8.0.0",
"version": "8.1.0",
"description": "A utility for translating the Bible and biblical content into any language.",
"keywords": [],
"homepage": "https://github.com/unfoldingWord-dev/ts-desktop",
Expand Down
2 changes: 1 addition & 1 deletion src/index/index.sqlite.REMOVED.git-id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
078875c5b36d3662a03ba05c8e48a03b4ca1eeaa
33dfd5dd5d8340f36776cf3c3d776a80b1840a81
8 changes: 5 additions & 3 deletions src/js/database.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,11 @@ function DataManager(query) {
for (var i = 0; i < mysources.length; i++) {
var source = mysources[i].resource_id;
var frames = this.getSourceFrames(mysources[i]);
console.log("resource:", source, "chunks:", frames.length);
combined[source] = frames;
sources.push(source);
if (frames.length) {
console.log("resource:", source, "chunks:", frames.length);
combined[source] = frames;
sources.push(source);
}
}
var match = true;
var j = 0;
Expand Down

0 comments on commit 5ffaaff

Please sign in to comment.