From 97b505f9ab0129964da50686f11bbbe12e54e68e Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Fri, 20 Mar 2026 22:07:19 +1300 Subject: [PATCH] fix --- ntfy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntfy.go b/ntfy.go index cf87145..3a4f3a4 100644 --- a/ntfy.go +++ b/ntfy.go @@ -33,7 +33,7 @@ func SendF(topic, title, message string, fn func(*Request)) (err error) { } func Send(topic, title, message string) error { - return SendF(topic, title, message) + return SendF(topic, title, message, func(r *Request) {}) } func SendActions(topic, title, message string, actions ...string) error {