whoops broke all levels Issue #104

This commit is contained in:
Peter Cottle 2013-06-11 10:03:11 -07:00
parent c7da989845
commit 7b68e0da73
7 changed files with 9 additions and 15 deletions

View file

@ -32,6 +32,7 @@ TreeCompare.dispatch = function(levelBlob, goalTreeString, treeToCompare) {
TreeCompare.compareAllBranchesWithinTreesAndHEAD = function(treeA, treeB) {
treeA = this.convertTreeSafe(treeA);
treeB = this.convertTreeSafe(treeB);
debugger;
return treeA.HEAD.target == treeB.HEAD.target && this.compareAllBranchesWithinTrees(treeA, treeB);
};