From 3be8aa315ebf42fba0dfd17fa01b74e9d92596cf Mon Sep 17 00:00:00 2001 From: Artem Muterko Date: Sun, 1 Mar 2026 13:38:14 +0100 Subject: [PATCH] Fix copy-paste error in Lark provider error message The error message incorrectly refers to "Slack" instead of "Lark" when URL validation fails. Signed-off-by: Ioannis Polyzos Signed-off-by: Artem Muterko --- internal/notifier/lark.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/notifier/lark.go b/internal/notifier/lark.go index 0ba723051..bd7fc2c4a 100644 --- a/internal/notifier/lark.go +++ b/internal/notifier/lark.go @@ -53,7 +53,7 @@ type LarkText struct { func NewLark(address string) (*Lark, error) { _, err := url.ParseRequestURI(address) if err != nil { - return nil, fmt.Errorf("invalid Slack hook URL %s", address) + return nil, fmt.Errorf("invalid Lark hook URL %s", address) } return &Lark{