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
On Linux environment create a new manual redirect with:
Old pattern: /test
New pattern: /test-redirect
The redirect is saved as:
Old pattern: /test
New pattern: file:///test-redirect
The new pattern is incorrectly prefixed with file:///.
Possibly because on Linux System.Uri recognizes /test-redirect as an absolute path with a missing scheme.
The text was updated successfully, but these errors were encountered:
Repro:
On Linux environment create a new manual redirect with:
/test
/test-redirect
The redirect is saved as:
/test
file:///test-redirect
The new pattern is incorrectly prefixed with
file:///
.Possibly because on Linux
System.Uri
recognizes/test-redirect
as an absolute path with a missing scheme.The text was updated successfully, but these errors were encountered: