From 7118ec64926dd980125a61873ace95ce91c057ff Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 14 Mar 2020 11:31:59 -0400 Subject: [PATCH] Fix Some Images not showing --- commands/search/right-stuf.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/search/right-stuf.js b/commands/search/right-stuf.js index 221b4c98..567a4cc5 100644 --- a/commands/search/right-stuf.js +++ b/commands/search/right-stuf.js @@ -71,6 +71,7 @@ module.exports = class RightStufCommand extends Command { let current = item.itemimages_detail while (!found) { if (current.primary) found = current.primary.url; + if (current.urls) found = current.urls.url; const key = Object.keys(current)[0]; if (!key) break; current = current[key];