Skip to content

Commit 82c0449

Browse files
committed
Fix bug: In OwinRequest URI should be Uri.
1 parent 5bb1319 commit 82c0449

File tree

1 file changed

+1
-1
lines changed
  • csharp/ql/lib/semmle/code/csharp/frameworks/microsoft

1 file changed

+1
-1
lines changed

csharp/ql/lib/semmle/code/csharp/frameworks/microsoft/Owin.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class MicrosoftOwinIOwinRequestClass extends Class {
121121
/** Gets the `URI` property. */
122122
Property getUriProperty() {
123123
result = this.getAProperty() and
124-
result.hasName("URI")
124+
result.hasName("Uri")
125125
}
126126

127127
/** DEPRECATED: Alias for getUriProperty */

0 commit comments

Comments
 (0)