chore: fix: 自己发的消息不提醒

This commit is contained in:
2021-08-07 17:59:06 +08:00
parent e9faa25bbd
commit ecdf88fb79
+1 -1
View File
@@ -239,7 +239,7 @@ class WXBot(WebWeixin):
# 工作时间发送新消息提醒到飞书 # 工作时间发送新消息提醒到飞书
curr_time_struct = time.localtime(time.time()) curr_time_struct = time.localtime(time.time())
if curr_time_struct.tm_hour >= 10 and curr_time_struct.tm_hour < 19: if params['from_name'] <> '_self' and curr_time_struct.tm_hour >= 10 and curr_time_struct.tm_hour < 19:
requests.post( requests.post(
"https://open.feishu.cn/open-apis/bot/v2/hook/30bda541-46de-40b7-8881-31b77deadc35", "https://open.feishu.cn/open-apis/bot/v2/hook/30bda541-46de-40b7-8881-31b77deadc35",
headers={"Content-Type": "application/json"}, headers={"Content-Type": "application/json"},