Compare commits

...

1 commit

Author SHA1 Message Date
97b505f9ab fix 2026-03-20 22:07:19 +13:00

View file

@ -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 {