From a51ffb4de35eaa9ce8dc4409c8c6f9a180aca41b Mon Sep 17 00:00:00 2001 From: admin <362324317@qq.com> Date: Sun, 17 May 2026 22:43:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20notifyEvent=E4=BA=8C=E6=AC=A1=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E6=A8=A1=E6=9D=BF=E5=86=B2=E6=8E=89=E5=B7=B2=E6=9B=BF?= =?UTF-8?q?=E6=8D=A2=E5=8F=98=E9=87=8F=20=E2=86=92=20=E4=BC=A0=E9=80=92tem?= =?UTF-8?q?plateVars?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source_clean/src/cloud/notification.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source_clean/src/cloud/notification.service.ts b/source_clean/src/cloud/notification.service.ts index c015399..6faa931 100644 --- a/source_clean/src/cloud/notification.service.ts +++ b/source_clean/src/cloud/notification.service.ts @@ -141,7 +141,7 @@ export function notifyConfigEvent( // Find matching push user by cloud_configs.promotion_account const pushUser = findPushUserForConfig(configId); if (!pushUser) { - notifyEvent(eventName, title, content, level); + notifyEvent(eventName, title, content, level, templateVars); return; } @@ -160,7 +160,7 @@ export function notifyConfigEvent( if (userChannels.length > 0) { sendToChannels(userChannels, title, content, level).catch(() => {}); } else { - notifyEvent(eventName, title, content, level); + notifyEvent(eventName, title, content, level, templateVars); } }