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 {