diff --git a/live_status_ntf.py b/live_status_ntf.py index 3d5187b..f21600e 100644 --- a/live_status_ntf.py +++ b/live_status_ntf.py @@ -136,7 +136,7 @@ class MyHandler(FileSystemEventHandler): f"{room.db_room.liver_name} 开锅了!", f"https://live.bilibili.com/{room.room_id}" ]) - requests.post("http://turntf:18846/notify", json={"msg": msg}) + requests.post("http://turntf:3000/notify", json={"msg": msg}) for notify_group in notify_qq_group.get(room.room_id, []): seng_qq_group_msg(notify_group, msg) @@ -146,7 +146,7 @@ class MyHandler(FileSystemEventHandler): f"{room.db_room.liver_name} 下锅了!", f"https://live.bilibili.com/{room.room_id}" ]) - requests.post("http://turntf:18846/notify", json={"msg": msg}) + requests.post("http://turntf:3000/notify", json={"msg": msg}) for notify_group in notify_qq_group.get(room.room_id, []): seng_qq_group_msg(notify_group, msg)