Compare commits

..

2 commits

Author SHA1 Message Date
0a6bc77f21 git.baxters.nz -> git.janksystems.org 2026-03-27 18:52:12 +13:00
97b505f9ab fix 2026-03-20 22:07:19 +13:00
2 changed files with 2 additions and 2 deletions

2
go.mod
View file

@ -1,3 +1,3 @@
module git.baxters.nz/jeremy/ntfy
module git.janksystems.org/jeremy/ntfy
go 1.25.7

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 {