From 1680b5917dce1dc55053dce6606816d42ca631a6 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 2 Feb 2020 15:03:00 -0500 Subject: [PATCH] Fix --- commands/search/frinkiac.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/search/frinkiac.js b/commands/search/frinkiac.js index 2c96a5f2..d29bbc83 100644 --- a/commands/search/frinkiac.js +++ b/commands/search/frinkiac.js @@ -34,8 +34,8 @@ module.exports = class FrinkiacCommand extends Command { if (!search) return msg.say('Could not find any results.'); const data = await this.fetchCaption(search.Episode, search.Timestamp); const time = moment.duration(data.Frame.Timestamp).format(); - let caption = data.Subtitles.map(sub => sub.Content).join(' ').split(' '); - let url = `https://frinkiac.com/img/${data.Frame.Episode}/${data.Frame.Timestamp}.jpg`; + const caption = data.Subtitles.map(sub => sub.Content).join(' ').split(' '); + let url = `https://frinkiac.com/meme/${data.Frame.Episode}/${data.Frame.Timestamp}.jpg`; const wrapped = ['']; let currentLine = 0; for (const word of caption) {