Skip to content

Commit 7684781

Browse files
committed
Add another exception
1 parent 818c312 commit 7684781

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ql/ql/src/queries/style/AndroidIdPrefix.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ from QueryDoc d
2525
where
2626
d.getLocation().getFile().getRelativePath().matches("%src/Security/%") and
2727
not d.getQueryId().matches("android/%") and
28-
not d.getQueryId() = "improper-intent-verification" and // known badly identified query that sadly we can't fix
28+
not d.getQueryId() = ["improper-intent-verification", "improper-webview-certificate-validation"] and // known badly identified queries that sadly we can't fix
2929
importsAndroidModule(d.getParent())
3030
select d, "This Android query is missing the `android/` prefix in its `@id`."

0 commit comments

Comments
 (0)