From 7df4d0c072dec0e5d12bf0d9b33587637711d34a Mon Sep 17 00:00:00 2001 From: TaeHwan Eun Date: Wed, 4 Dec 2024 12:04:27 +0900 Subject: [PATCH] =?UTF-8?q?feat=20:=20[mobile]=20=ED=9A=8C=EC=9D=98=20?= =?UTF-8?q?=EC=9E=85=EC=9E=A5=20=EC=8B=9C=20web=EC=9D=B4=EB=9E=91=20?= =?UTF-8?q?=EB=8F=99=EC=9D=BC=ED=95=9C=20=ED=99=94=EB=A9=B4=20=EB=9C=A8?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- react/features/deep-linking/functions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/react/features/deep-linking/functions.js b/react/features/deep-linking/functions.js index 855d893952bb..4f63d88c86b4 100644 --- a/react/features/deep-linking/functions.js +++ b/react/features/deep-linking/functions.js @@ -83,6 +83,7 @@ export function getDeepLinkingPage(state) { return Promise.resolve(); } + /* if (isMobileBrowser()) { // mobile const mobileAppPromo = typeof interfaceConfig === 'object' @@ -92,7 +93,7 @@ export function getDeepLinkingPage(state) { typeof mobileAppPromo === 'undefined' || Boolean(mobileAppPromo) ? DeepLinkingMobilePage : NoMobileApp); } - + */ return _openDesktopApp(state).then( // eslint-disable-next-line no-confusing-arrow result => result ? DeepLinkingDesktopPage : undefined);