This commit is contained in:
xyj 2024-01-26 17:12:22 +08:00
parent 981f8d0ba4
commit c05ff85518
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ async def process_data(request: Request):
data = json.loads(data)
event = data["event"]
clientid = data["clientid"]
if not clientid.startswith("farm"):
if not clientid.startswith("farm") or not clientid.startswith("test"):
return BaseResponse(code=500, msg="不符合畜牧clientId")
# 连接成功处理
if event == "client.connected":