Open
Description
Using the pushover notifier works really well and it even embeds a thumbnail in the notification but it would be nice to support the url
parameter for pushover (similar to ntfy's action URL) so it's easier to open the review url. Could also use url_title
...
For example:
frigate-notify/notifier/pushover.go
Lines 32 to 41 in 5a6f45e
to
notif := &pushover.Message{
Message: message,
Title: title,
Priority: profile.Priority,
Sound: profile.Sound,
HTML: true,
TTL: time.Duration(profile.TTL) * time.Second,
URL: event.Extra.ReviewLink,
URLTitle: "Review Event",
}
Thank you!