Skip to content

Commit

Permalink
* remove order from sons db query because we sort
Browse files Browse the repository at this point in the history
  the db on save
  • Loading branch information
JayGray committed Jul 29, 2014
1 parent 59649cb commit d4317d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/js/components/lib_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@
});

Audica.on('fillSongBox', function () {
var currentSongList = Audica.songDb.query().order('artist logical, album logical, year logical, track logical, title logical').get();
var currentSongList = Audica.songDb.query().get();
_this.fillSongBox(currentSongList);
});

Expand Down

0 comments on commit d4317d1

Please sign in to comment.