diff --git a/components/app.js b/components/app.js index f6b4595..01799f1 100644 --- a/components/app.js +++ b/components/app.js @@ -72,10 +72,10 @@ function compareBuffers(a, b) { return 1; } - if (a.name > b.name) { + if (a.name < b.name) { return -1; } - if (a.name < b.name) { + if (a.name > b.name) { return 1; }