From 8bf929a9586e23ec644229a2540f1f0358dcc4d0 Mon Sep 17 00:00:00 2001 From: Epifeny Date: Mon, 19 Jan 2026 14:23:09 +0200 Subject: [PATCH] feat(ntfy): include tag values in ntfy tags array (#6766) Co-authored-by: epifeny --- server/notification-providers/ntfy.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/server/notification-providers/ntfy.js b/server/notification-providers/ntfy.js index 4d1c8d61b..d88199b3a 100644 --- a/server/notification-providers/ntfy.js +++ b/server/notification-providers/ntfy.js @@ -60,7 +60,13 @@ class Ntfy extends NotificationProvider { // Include monitor's assigned tags if (monitorJSON && monitorJSON.tags && Array.isArray(monitorJSON.tags)) { - const monitorTagNames = monitorJSON.tags.map((tag) => tag.name); + const monitorTagNames = monitorJSON.tags.map((tag) => { + // Include value if it exists + if (tag.value) { + return `${tag.name}: ${tag.value}`; + } + return tag.name; + }); tags = tags.concat(monitorTagNames); }