From 112ca9325d7f7fa80fc3ac20e218468abc91209b Mon Sep 17 00:00:00 2001 From: Siwat Sirichai Date: Mon, 14 Jul 2025 11:05:17 +0700 Subject: [PATCH] refactor session ID handling in worker communication protocol; replace subscriptionIdentifier with displayIdentifier --- worker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worker.md b/worker.md index 67acec5..8bf3349 100644 --- a/worker.md +++ b/worker.md @@ -267,7 +267,7 @@ Allows the backend to instruct the worker to associate a session ID with a subsc { "type": "setSessionId", "payload": { - "subscriptionIdentifier": "display-001;cam-002", + "displayIdentifier": "display-001", "sessionId": 12345 } } @@ -279,7 +279,7 @@ Or to clear the session: { "type": "setSessionId", "payload": { - "subscriptionIdentifier": "display-001;cam-002", + "displayIdentifier": "display-001", "sessionId": null } }