summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webapp/utils/utils.jsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx
index a8a93b452..613995200 100644
--- a/webapp/utils/utils.jsx
+++ b/webapp/utils/utils.jsx
@@ -65,11 +65,7 @@ export function isIosChrome() {
export function isMobileApp() {
const userAgent = navigator.userAgent;
- // the mobile app has different user agents for the native api calls and the shim, so handle them both
- const isApi = userAgent.indexOf('Mattermost') !== -1;
- const isShim = userAgent.indexOf('iPhone') !== -1 && userAgent.indexOf('Safari') === -1 && userAgent.indexOf('Chrome') === -1;
-
- return isApi || isShim;
+ return userAgent.indexOf('iPhone') !== -1 && userAgent.indexOf('Safari') === -1 && userAgent.indexOf('CriOS') === -1;
}
export function isInRole(roles, inRole) {