Skip to content

Commit 6743485

Browse files
fix fix
1 parent 23dfd3d commit 6743485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

functions/redirector/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ extension ListExtension on List<String> {
55
bool matchesScheme(String scheme) {
66
if (this.isEmpty) return false;
77
for (final item in this) {
8-
if (item.contains(scheme)) {
8+
if (scheme.contains(item)) {
99
return true;
1010
}
1111
}

0 commit comments

Comments
 (0)