1
0
forked from baron/baron-sso

fix: userfront 빌드 시 발생하는 Null Safety 에러 수정 #243

This commit is contained in:
2026-02-11 16:46:44 +09:00
parent 787d7aa0f0
commit dc09c2dc6b

View File

@@ -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');
}