From db1f545f59f98bf1e169d18cc801ba98885ab548 Mon Sep 17 00:00:00 2001 From: Daniel Volz Date: Sun, 10 May 2026 21:42:24 +0200 Subject: [PATCH] fix: preserve ntfy action clear flags for settings delivery --- backend/src/services/notifications/action-renderer.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/services/notifications/action-renderer.ts b/backend/src/services/notifications/action-renderer.ts index 1240b5a..5adec51 100644 --- a/backend/src/services/notifications/action-renderer.ts +++ b/backend/src/services/notifications/action-renderer.ts @@ -117,8 +117,7 @@ export function buildNtfyActions(options: PushNotificationOptions): NtfyActionPa label: action.label, url: action.url, method: "POST", - // Clear the original actionable ntfy notification locally after a successful mutation. - clear: true, + clear: false, }; }); }