diff --git a/src/js/git/index.js b/src/js/git/index.js index eaddf854..5b96b114 100644 --- a/src/js/git/index.js +++ b/src/js/git/index.js @@ -2190,7 +2190,7 @@ GitEngine.prototype.getUpstreamDiffSetFromSet = function(stopSet, location) { GitEngine.prototype.getUpstreamDiffFromSet = function(stopSet, location) { var result = Graph.bfsFromLocationWithSet(this, location, stopSet); - result.sort(this.dateSortFunc); + result.reverse(); return result; };