fix: use different port, fix endpoint name matching

ref: N25B-168
This commit is contained in:
Twirre Meulenbelt
2025-10-16 17:37:01 +02:00
parent 23c3379bfb
commit c10fbc7c90
2 changed files with 4 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ class MainReceiver(ReceiverBase):
if message["endpoint"] == "ping":
return self._handle_ping(message)
elif message["endpoint"].startswith("negotiation"):
elif message["endpoint"].startswith("negotiate"):
return self._handle_negotiation(message)
return {"endpoint": "error", "data": "The requested endpoint is not supported."}