Skip to content

Commit 38e259a

Browse files
committed
Fix unescaping
1 parent 5982fc9 commit 38e259a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/Components/src/Routing/RouteContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ internal sealed class RouteContext
1111
{
1212
public RouteContext(string path)
1313
{
14-
Path = path;
14+
Path = Uri.UnescapeDataString(path);
1515
}
1616

1717
public string Path { get; set; }

0 commit comments

Comments
 (0)