diff --git a/frontend/app/components/Session/Session.tsx b/frontend/app/components/Session/Session.tsx
index ad152ad5e..ec4f969be 100644
--- a/frontend/app/components/Session/Session.tsx
+++ b/frontend/app/components/Session/Session.tsx
@@ -51,8 +51,8 @@ function Session({
clearLogs()
sessionStore.resetUserFilter();
} ,[])
-
- const player = session.platform === 'ios' ? :
+
+ const player = session.isMobileNative ? :
return (
timezone?: ISession['timezone'];
platform: ISession['platform'];
+ isMobileNative?: ISession['isMobileNative'];
fileKey: ISession['fileKey'];
durationSeconds: number;
@@ -304,7 +306,7 @@ export default class Session {
Object.assign(this, {
...session,
- isIOS: session.platform === 'ios',
+ isMobileNative: ['ios', 'android'].includes(session.platform),
errors: exceptions,
siteId: projectId,
events,