From 293fb40d7cfb1378e4e2f1d7b4d873aab41bbb52 Mon Sep 17 00:00:00 2001 From: Dmitrii Okunev Date: Tue, 19 Aug 2025 01:36:58 +0100 Subject: [PATCH] Fix a typo: it should be , not --- pkg/streamcontrol/youtube/chat_listener_obsolete.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/streamcontrol/youtube/chat_listener_obsolete.go b/pkg/streamcontrol/youtube/chat_listener_obsolete.go index a8d7a27..643a422 100644 --- a/pkg/streamcontrol/youtube/chat_listener_obsolete.go +++ b/pkg/streamcontrol/youtube/chat_listener_obsolete.go @@ -178,7 +178,7 @@ func messageAsHTML(msg string) string { re := regexp.MustCompile(`https://yt3\.ggpht\.com/[^\s]+`) return re.ReplaceAllStringFunc(msg, func(link string) string { link = html.EscapeString(link) - return fmt.Sprintf(`%s`, link, link) + return fmt.Sprintf(``, link) }) }