From 2aee03460d6e52939fcc607b88deba5eebbc089b Mon Sep 17 00:00:00 2001 From: Dalton Date: Tue, 11 Dec 2018 20:58:45 -0800 Subject: [PATCH] added more debug --- bot.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bot.js b/bot.js index 70a00a5..b50fa51 100644 --- a/bot.js +++ b/bot.js @@ -184,17 +184,19 @@ function imgurRequest(subreddit, page_max) { } // Abstracted Reddit Json media grab. -// todo I think since it's randomly picking indices but children.length times, it's missing rare items. +// todo I think since it's randomly picking indices but children.length * 2 times, it's missing rare items. function handleRedditJson(data) { let json = data.json(); if (json.data) { - for (let i = 0; i < json.data.children.length; i++) { + for (let i = 0; i < json.data.children.length * 2; i++) { let rand = getRandomInt(0, json.data.children.length - 1); if (json.data.children[rand].data.post_hint === "image" || json.data.children[rand].data.post_hint === "link" || json.data.children.data.post_hint === "rich:video") { return json.data.children[rand].data.url; } } + } else { + sendToBotTestingChannel("json data:" + json.data); } // What if we don't find anything i.e. r/dogs but its valid subreddit. return "";