Skip to content

Commit

Permalink
* remove limit of database query
Browse files Browse the repository at this point in the history
  • Loading branch information
JayGray committed Jul 29, 2014
1 parent 4e81c4f commit 75e7e39
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').limit(15).get();
var currentSongList = Audica.songDb.query().order('artist logical, album logical, year logical, track logical, title logical').get();
_this.fillSongBox(currentSongList);
});

Expand Down

0 comments on commit 75e7e39

Please sign in to comment.