feat(chalice): remove projectID from tracker-assist payload

This commit is contained in:
Taha Yassine Kraiem 2022-12-11 19:47:19 +01:00
parent b894f4861a
commit 84eac8d858

View file

@ -78,6 +78,8 @@ def __get_live_sessions_ws(project_id, data):
for s in _live_peers:
s["live"] = True
s["projectId"] = project_id
if "projectID" in s:
s.pop("projectID")
return live_peers