From 289b17871aadcf5aa942641a909fa2b265fd392c Mon Sep 17 00:00:00 2001 From: Alex Li Date: Tue, 27 Jan 2026 21:50:43 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Use=20`startsWith`=20for=20the?= =?UTF-8?q?=20`wc://`=20check=20in=20the=20`UriService`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reown_appkit/lib/modal/services/uri_service/url_utils.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reown_appkit/lib/modal/services/uri_service/url_utils.dart b/packages/reown_appkit/lib/modal/services/uri_service/url_utils.dart index 2792f10e..4e276532 100644 --- a/packages/reown_appkit/lib/modal/services/uri_service/url_utils.dart +++ b/packages/reown_appkit/lib/modal/services/uri_service/url_utils.dart @@ -17,7 +17,7 @@ class UriService extends IUriService { } // If the wallet is just a generic wc:// then it is not installed - if (uri.contains('wc://')) { + if (uri.startsWith('wc://')) { return false; }