From fcb690d7e56230369e549083d7f6063806f7c65e Mon Sep 17 00:00:00 2001 From: Jonathan Cremin Date: Sat, 13 Dec 2014 13:03:43 +0000 Subject: [PATCH] Fix artwork in rdio --- lib/services/rdio/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/services/rdio/index.js b/lib/services/rdio/index.js index 020b653..f227620 100644 --- a/lib/services/rdio/index.js +++ b/lib/services/rdio/index.js @@ -157,7 +157,10 @@ module.exports.search = function(data) { name: result.name, streamUrl: result.shortUrl, purchaseUrl: null, - artwork: result.icon.replace("square-200", "square-250").replace("http:", "https:"), + artwork: { + small: result.icon.replace("square-200", "square-250").replace("http:", "https:"), + large: result.icon.replace("square-200", "square-600").replace("http:", "https:") + }, artist: { name: result.artist }