From 82c0449d56ea1a276570c09471ddd751c4fc7fea Mon Sep 17 00:00:00 2001 From: Ethan Willoner Date: Tue, 6 Dec 2022 00:01:17 +0000 Subject: [PATCH] Fix bug: In OwinRequest URI should be Uri. --- csharp/ql/lib/semmle/code/csharp/frameworks/microsoft/Owin.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/ql/lib/semmle/code/csharp/frameworks/microsoft/Owin.qll b/csharp/ql/lib/semmle/code/csharp/frameworks/microsoft/Owin.qll index 331e89b1bb8..5f55a77d96b 100644 --- a/csharp/ql/lib/semmle/code/csharp/frameworks/microsoft/Owin.qll +++ b/csharp/ql/lib/semmle/code/csharp/frameworks/microsoft/Owin.qll @@ -121,7 +121,7 @@ class MicrosoftOwinIOwinRequestClass extends Class { /** Gets the `URI` property. */ Property getUriProperty() { result = this.getAProperty() and - result.hasName("URI") + result.hasName("Uri") } /** DEPRECATED: Alias for getUriProperty */