This commit is contained in:
xyj 2024-01-26 17:17:34 +08:00
parent a825e4c6d3
commit f59752a7bb
1 changed files with 1 additions and 1 deletions

View File

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