优化邮件处理记录的导入来源信息,简化通知内容
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 21s
Docker Build & Deploy / Deploy to Production (push) Successful in 7s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s

This commit is contained in:
2026-01-03 12:04:26 +08:00
parent 5c108d27df
commit 53d8470e88
2 changed files with 15 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ public class MessageRecordService(IMessageRecordRepository messageRepo, INotific
var result = await messageRepo.AddAsync(message);
if (result)
{
await notificationService.SendNotificationAsync($"新增的账单通知: {title}");
await notificationService.SendNotificationAsync(title);
}
return result;
}