Compare commits

...

2 Commits

Author SHA1 Message Date
wangsiyuan 6355f1e66b Merge branch 'dev'
fix
2023-12-12 18:54:23 +08:00
wangsiyuan 9668802a46 更新 HandleWeChatMsgService.java 2023-12-12 18:53:58 +08:00
1 changed files with 2 additions and 2 deletions

View File

@ -52,8 +52,8 @@ public class HandleWeChatMsgService {
text.setContent("你有一条微信通知\n"+
"\nsender: " + weChatMsg.getSender() +
"\ntitle: "+ weChatMsg.getTitle() +
"接受时间: " +weChatMsg.getCurrentTime() +
"\n内容: \n\n"+ weChatMsg.getMessage());
"\n接受时间: " +weChatMsg.getCurrentTime() +
"\n\n内容: \n"+ weChatMsg.getMessage());
textMessage.setText(text);
logger.info("TextMessage: {}", textMessage);
return textMessage;