From 17ad535b3cbd4466e127bcc100a3a3bf5f985836 Mon Sep 17 00:00:00 2001 From: Your New SJW Waifu Date: Wed, 18 Aug 2021 12:04:52 -0500 Subject: [PATCH] I'm a tard --- emotes.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emotes.go b/emotes.go index 8f11a2b..38d7199 100644 --- a/emotes.go +++ b/emotes.go @@ -139,13 +139,13 @@ func findEmotes(dir string, em common.EmotesMap) (common.EmotesMap, error) { } for _, file := range emoteJPGs { - gif := strings.ReplaceAll(common.Substr(file, runPathLength, len(file)), "\\", "/") + jpg := strings.ReplaceAll(common.Substr(file, runPathLength, len(file)), "\\", "/") //common.LogDebugf("Emote JPG: %s", jpg) em = em.Add(jpg) } for _, file := range emoteSVGs { - gif := strings.ReplaceAll(common.Substr(file, runPathLength, len(file)), "\\", "/") + svg := strings.ReplaceAll(common.Substr(file, runPathLength, len(file)), "\\", "/") //common.LogDebugf("Emote SVG: %s", svg) em = em.Add(svg) }