From d5d2f066b32e417231abf99a46963da856de8be1 Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Tue, 2 Jun 2026 08:01:32 -0400 Subject: [PATCH] fix: don't use pusbover title --- hbd/server/notify.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hbd/server/notify.py b/hbd/server/notify.py index 15287ca..be5bf61 100644 --- a/hbd/server/notify.py +++ b/hbd/server/notify.py @@ -140,7 +140,9 @@ def _send_pushover(channel_cfg: dict, notif: Notification) -> bool: if not token or not user: logger.warning("pushover: missing token or user") return False - params: dict = {"token": token, "user": user, "title": notif.title, "message": notif.body} + body = "%s: %s" % (notif.title, notif.body) + title = "" + params: dict = {"token": token, "user": user, "title": title, "message": body} if channel_cfg.get("sound"): params["sound"] = channel_cfg["sound"] if notif.url: