From 14dcdfc4d64e4f627bebfa0cb042a54c1978b25d Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Sun, 10 Aug 2025 19:23:31 +0000 Subject: [PATCH] fix: Discord webhook avatar URLs pointing to wrong repository --- internal/notifications/webhook_templates.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/notifications/webhook_templates.go b/internal/notifications/webhook_templates.go index 5b5bfb6c9..6db77af18 100644 --- a/internal/notifications/webhook_templates.go +++ b/internal/notifications/webhook_templates.go @@ -22,7 +22,7 @@ func GetWebhookTemplates() []WebhookTemplate { Headers: map[string]string{"Content-Type": "application/json"}, PayloadTemplate: `{ "username": "Pulse Monitoring", - "avatar_url": "https://raw.githubusercontent.com/rcourtman/pulse-go-rewrite/main/frontend-modern/public/favicon.svg", + "avatar_url": "https://raw.githubusercontent.com/rcourtman/Pulse/main/frontend-modern/public/favicon.svg", "embeds": [{ "title": "Pulse Alert: {{.Level | title}}", "description": "{{.Message}}", @@ -39,7 +39,7 @@ func GetWebhookTemplates() []WebhookTemplate { "timestamp": "{{.Timestamp}}", "footer": { "text": "Pulse Monitoring", - "icon_url": "https://raw.githubusercontent.com/rcourtman/pulse-go-rewrite/main/frontend-modern/public/favicon.svg" + "icon_url": "https://raw.githubusercontent.com/rcourtman/Pulse/main/frontend-modern/public/favicon.svg" } }] }`,