From dc09c2dc6b37ad7ab7a5c40e46297d6d43e0240d Mon Sep 17 00:00:00 2001 From: chan Date: Wed, 11 Feb 2026 16:46:44 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20userfront=20=EB=B9=8C=EB=93=9C=20?= =?UTF-8?q?=EC=8B=9C=20=EB=B0=9C=EC=83=9D=ED=95=98=EB=8A=94=20Null=20Safet?= =?UTF-8?q?y=20=EC=97=90=EB=9F=AC=20=EC=88=98=EC=A0=95=20#243?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- userfront/lib/core/services/web_auth_integration_web.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userfront/lib/core/services/web_auth_integration_web.dart b/userfront/lib/core/services/web_auth_integration_web.dart index 9edbfc2f..996a1a26 100644 --- a/userfront/lib/core/services/web_auth_integration_web.dart +++ b/userfront/lib/core/services/web_auth_integration_web.dart @@ -55,5 +55,5 @@ bool implIsPopup() { // Manual parse fallback for cases where Uri.base might miss params due to hash routing final search = html.window.location.search; - return search.contains('source=adminfront'); + return search != null && search.contains('source=adminfront'); }