From 4b33efea47f889dc37d9f3242170817de61592a7 Mon Sep 17 00:00:00 2001 From: Meik Date: Sun, 9 Nov 2025 21:37:50 +0100 Subject: [PATCH] fix: keep ntfy title but drop duplicate body prefix --- services/notificationService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/notificationService.js b/services/notificationService.js index 8878b48..d3b1366 100644 --- a/services/notificationService.js +++ b/services/notificationService.js @@ -88,7 +88,7 @@ async function sendSlotNotification({ profileId, storeName, pickupDate, onlyNoti ? `Der Slot am ${dateLabel} wurde erfolgreich gebucht.` : `Es wurde ein Slot am ${dateLabel} gefunden.`; const storeLink = storeId ? `https://foodsharing.de/store/${storeId}` : null; - const fullMessage = storeLink ? `${title}\n${baseMessage}\n${storeLink}` : `${title}\n${baseMessage}`; + const fullMessage = storeLink ? `${baseMessage}\n${storeLink}` : baseMessage; await notifyChannels(profileId, { title,