You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've pretty much know where the issue is coming from. In Private/Helper.ps#L3149 it escape the whole path for Regex control char. I'm not sure if it's required somewhere else or not.
The text was updated successfully, but these errors were encountered:
Describe the Bug
If I have a
.
in my uri path it got replace by\\.
in openapi definition and break swagger parameter replacement.Steps To Reproduce
Here my server.ps1 file
server.ps1
And it's generating the following openapi definition
See
"/v4\\.2/{potato}"
-> Should be"/v4.2/{potato}"
openapi JSON
Expected Behavior
The
.
shouldn't be replace in the OA Definition.Platform
Additional Context
I've pretty much know where the issue is coming from. In Private/Helper.ps#L3149 it escape the whole path for Regex control char. I'm not sure if it's required somewhere else or not.
The text was updated successfully, but these errors were encountered: