Skip to content

Commit

Permalink
Fix #202: Fix merging of search results from multiple backends.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkem committed Aug 4, 2016
1 parent 75c5b7e commit 05abb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/app/library/library.js
Expand Up @@ -3,7 +3,7 @@

function mergeResults(results) {
function compareModelsByName(a, b) {
return (a.name || '').uri.localeCompare(b.name || '');
return (a.name || '').localeCompare(b.name || '');
}

var obj = {};
Expand Down

0 comments on commit 05abb6f

Please sign in to comment.