🔨 修复 Pushplus 推送换行的问题

This commit is contained in:
Sitoi 2021-03-09 13:15:19 +08:00
parent 90d25cdaad
commit 38291f2e75

View File

@ -115,7 +115,7 @@ def message2pushplus(pushplus_token, content, pushplus_topic=None):
data = {
"token": pushplus_token,
"title": "签到通知",
"content": content,
"content": content.replace("\n", "<br>"),
"template": "json"
}
if pushplus_topic: