From 0f86f15efe4334a0bb0b91e9f0a5998d4a322df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lili=20=28Lin=29=20Pavel=C5=AF?= <40394943+SleepyLili@users.noreply.github.com> Date: Mon, 27 Feb 2023 20:12:22 +0100 Subject: [PATCH] Change Owncast Avatar URL for discord hooks (#2748) /images/owncast-logo.png doesn't exist. /logo does. --- notifications/notifications.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications/notifications.go b/notifications/notifications.go index 99c01aede..545488efa 100644 --- a/notifications/notifications.go +++ b/notifications/notifications.go @@ -112,7 +112,7 @@ func (n *Notifier) setupDiscord() error { if discordConfig.Enabled && discordConfig.Webhook != "" { var image string if serverURL := data.GetServerURL(); serverURL != "" { - image = serverURL + "/images/owncast-logo.png" + image = serverURL + "/logo" } discordNotifier, err := discord.New( data.GetServerName(),