Merge pull request #871 from openreplay/api-v1.9.0-patch

feat(chalice): remove projectID from tracker-assist payload
This commit is contained in:
Kraiem Taha Yassine 2022-12-11 19:47:50 +01:00 committed by GitHub
commit f18ce18636
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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