Api v1.15.0 (#1622)
* fix(chalice): fixed default env-vars * fix(chalice): fixed ios replay video * fix(chalice): fixed ios events response
This commit is contained in:
parent
f2a7fd80e3
commit
88cc70b019
1 changed files with 2 additions and 3 deletions
|
|
@ -1,5 +1,4 @@
|
|||
import schemas
|
||||
import schemas
|
||||
from chalicelib.core import events, metadata, events_ios, \
|
||||
sessions_mobs, issues, resources, assist, sessions_devtool, sessions_notes
|
||||
from chalicelib.utils import errors_helper
|
||||
|
|
@ -176,8 +175,8 @@ def get_events(project_id, session_id):
|
|||
if e["type"].endswith("_IOS"):
|
||||
e["type"] = e["type"][:-len("_IOS")]
|
||||
data['crashes'] = events_ios.get_crashes_by_session_id(session_id=session_id)
|
||||
data['userEvents'] = events_ios.get_customs_by_sessionId(project_id=project_id,
|
||||
session_id=session_id)
|
||||
data['userEvents'] = events_ios.get_customs_by_session_id(project_id=project_id,
|
||||
session_id=session_id)
|
||||
else:
|
||||
data['events'] = events.get_by_session_id(project_id=project_id, session_id=session_id,
|
||||
group_clickrage=True)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue