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); } }