webhook 通知 body 增加 text/plain 类型,修复多定时任务服务重启未初始化

This commit is contained in:
whyour
2023-11-22 22:43:48 +08:00
parent f056b611a4
commit de9e9ce627
7 changed files with 29 additions and 19 deletions
+2 -2
View File
@@ -749,8 +749,8 @@ def parse_headers(headers):
def parse_body(body, content_type):
if not body:
return ""
if not body or content_type == "text/plain":
return body
parsed = {}
lines = body.split("\n")