mirror of
https://github.com/github/codeql.git
synced 2025-12-23 20:26:32 +01:00
Merge pull request #11576 from ethanwilloner/main
csharp: URI should be Uri in Owin.qll library.
This commit is contained in:
@@ -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 */
|
||||
|
||||
4
csharp/ql/src/change-notes/2022-12-05-owin-uri-fix.md
Normal file
4
csharp/ql/src/change-notes/2022-12-05-owin-uri-fix.md
Normal 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.
|
||||
Reference in New Issue
Block a user