Merge pull request #11576 from ethanwilloner/main

csharp: URI should be Uri in Owin.qll library.
This commit is contained in:
Tom Hvitved
2022-12-07 09:34:51 +01:00
committed by GitHub
2 changed files with 6 additions and 2 deletions

View File

@@ -118,10 +118,10 @@ class MicrosoftOwinIOwinRequestClass extends Class {
result.hasName("Scheme")
}
/** Gets the `URI` property. */
/** Gets the `Uri` property. */
Property getUriProperty() {
result = this.getAProperty() and
result.hasName("URI")
result.hasName("Uri")
}
/** DEPRECATED: Alias for getUriProperty */

View File

@@ -0,0 +1,4 @@
---
category: fix
---
* Fixes a bug where the Owin.qll framework library will look for "URI" instead of "Uri" in the OwinRequest class.