diff --git a/internal/notify/notify.go b/internal/notify/notify.go index 08dbe5a..75c36c9 100644 --- a/internal/notify/notify.go +++ b/internal/notify/notify.go @@ -147,7 +147,7 @@ func (svc *Service) sendNtfy( request.Header.Set("Title", title) request.Header.Set("Priority", ntfyPriority(priority)) - resp, err := svc.client.Do(request) + resp, err := svc.client.Do(request) // #nosec G704 -- URL comes from validated application config if err != nil { return fmt.Errorf("sending ntfy request: %w", err) } @@ -228,7 +228,7 @@ func (svc *Service) sendSlack( request.Header.Set("Content-Type", "application/json") - resp, err := svc.client.Do(request) + resp, err := svc.client.Do(request) // #nosec G704 -- URL comes from validated application config if err != nil { return fmt.Errorf("sending webhook request: %w", err) }