From be8236a428714d702f087ecc4ce8da864b15d8af Mon Sep 17 00:00:00 2001 From: Jonathan Cremin Date: Wed, 14 Jan 2015 23:41:36 +0000 Subject: [PATCH] Stop pushing Youtube to last position --- routes/share.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/routes/share.js b/routes/share.js index 25ce1cf..162bffc 100644 --- a/routes/share.js +++ b/routes/share.js @@ -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; });