We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents afe7872 + 64f5806 commit 51f11f1Copy full SHA for 51f11f1
csharp/ql/lib/semmle/code/csharp/frameworks/microsoft/Owin.qll
@@ -118,10 +118,10 @@ class MicrosoftOwinIOwinRequestClass extends Class {
118
result.hasName("Scheme")
119
}
120
121
- /** Gets the `URI` property. */
+ /** Gets the `Uri` property. */
122
Property getUriProperty() {
123
result = this.getAProperty() and
124
- result.hasName("URI")
+ result.hasName("Uri")
125
126
127
/** DEPRECATED: Alias for getUriProperty */
csharp/ql/src/change-notes/2022-12-05-owin-uri-fix.md
@@ -0,0 +1,4 @@
1
+---
2
+category: fix
3
4
+* Fixes a bug where the Owin.qll framework library will look for "URI" instead of "Uri" in the OwinRequest class.
0 commit comments