Skip to content

Commit

Permalink
feat(chalice): support android sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
tahayk committed Apr 15, 2024
1 parent d3e9bc5 commit 1a2375a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ee/api/chalicelib/core/sessions_replay.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_by_id2_pg(project_id, session_id, context: schemas.CurrentContext, full_
if data is not None:
data = helper.dict_to_camel_case(data)
if full_data:
if data["platform"] == 'ios':
if data["platform"] in ('ios', 'android'):
data['events'] = events_ios.get_by_sessionId(project_id=project_id, session_id=session_id)
for e in data['events']:
if e["type"].endswith("_IOS"):
Expand Down

0 comments on commit 1a2375a

Please sign in to comment.