From 124ce8a8ab96dc29559cfbc2d917ca6b898c76d3 Mon Sep 17 00:00:00 2001 From: VnPower Date: Tue, 30 Jan 2024 20:10:30 +0700 Subject: [PATCH] Fix unproxied emojis --- serve/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serve/template.go b/serve/template.go index 1267979..b548611 100644 --- a/serve/template.go +++ b/serve/template.go @@ -87,7 +87,7 @@ func ParseEmojis(s string) template.HTML { s = s[1 : len(s)-1] // Get the string inside id := emojiList[s] - return fmt.Sprintf(`(%s)`, id, s) + return fmt.Sprintf(`(%s)`, id, s) }) return template.HTML(parsedString) }