fix(deep-link): inverted is app link filter (#3396)

Fix #3392, regression from #3143
This commit is contained in:
Tony
2026-04-17 22:15:07 +08:00
committed by GitHub
parent 9228419e13
commit e6cdc9f52e
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ fn main() {
let deep_link_domains = config
.mobile
.iter()
.filter(|domain| domain.is_app_link())
.filter(|domain| !domain.is_app_link())
.collect::<Vec<_>>();
if deep_link_domains.is_empty() {