diff --git a/bot.js b/bot.js index 806b037..15846bc 100644 --- a/bot.js +++ b/bot.js @@ -226,12 +226,21 @@ function handleRedditBooruJson(data) { return json[getRandomInt(0, json.length)].cdnUrl; } +async function loadJson(url) { + let response = await fetch(url); + if (response.status == 200) { + return response.json(); + } else { + throw new HttpError(response); + } +} + // Makes an async url request with the provided function: 'process'. -async function asyncReddit(message) { +async function asyncReddit(channelMessage) { // test command for async site request - let messageSplit = message.content.substring(2).split(' '); + let messageSplit = channelMessage.content.substring(2).split(' '); if (messageSplit.length === 2) { let reddit_url = "https://www.reddit.com/r/" + messageSplit[1].replace(/[^a-zA-Z0-9_\-]+/g, '') @@ -245,15 +254,6 @@ async function asyncReddit(message) { } } -async function loadJson(url) { - let response = await fetch(url); - if (response.status == 200) { - return response.json(); - } else { - throw new HttpError(response); - } -} - // subreddit request function subredditRequest(subreddit) { let multiSubreddit = subreddit.split(',');