Stop pushing Youtube to last position

This commit is contained in:
Jonathan Cremin 2015-01-14 23:41:36 +00:00
parent a6bca5536f
commit be8236a428

View file

@ -15,8 +15,6 @@ var formatAndSort = function(matches, serviceId) {
matches = Object.keys(matches).map(function (key) {return matches[key]});
matches.sort(function(a, b) {
return a.id && !b.id;
}).sort(function(a, b) {
return b.type == "video";
}).sort(function(a, b) {
return a.service != serviceId;
});