From 19545204471af8b56fb7cfa71e5de968212f18b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Sat, 12 Oct 2019 11:56:19 +0200 Subject: [PATCH] Fix a small typo (#384) --- pkg/notifications/gotify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/notifications/gotify.go b/pkg/notifications/gotify.go index 47ea884..c9c6af8 100644 --- a/pkg/notifications/gotify.go +++ b/pkg/notifications/gotify.go @@ -31,7 +31,7 @@ func newGotifyNotifier(c *cobra.Command, acceptedLogLevels []log.Level) t.Notifi } else if !(strings.HasPrefix(gotifyURL, "http://") || strings.HasPrefix(gotifyURL, "https://")) { log.Fatal("Gotify URL must start with \"http://\" or \"https://\"") } else if strings.HasPrefix(gotifyURL, "http://") { - log.Warn("Using an HTTP url fpr Gotify is insecure") + log.Warn("Using an HTTP url for Gotify is insecure") } gotifyToken, _ := flags.GetString("notification-gotify-token")