From 32f1856920855b9376684e2031ec46d179f25ba2 Mon Sep 17 00:00:00 2001 From: Meik Date: Sun, 9 Nov 2025 21:33:26 +0100 Subject: [PATCH] fix: drop ntfy title header to keep umlauts intact --- services/notificationService.js | 1 - 1 file changed, 1 deletion(-) diff --git a/services/notificationService.js b/services/notificationService.js index 17e7be6..bf32a00 100644 --- a/services/notificationService.js +++ b/services/notificationService.js @@ -32,7 +32,6 @@ async function sendNtfyNotification(adminNtfy, userNtfy, payload) { const topic = `${sanitizedPrefix}${separator}${sanitizedTopic}` || sanitizedPrefix || sanitizedTopic; const url = `${server}/${topic}`; const headers = { - Title: payload.title, Priority: payload.priority || 'default', 'Content-Type': 'text/plain; charset=utf-8' };