Skip to content

Commit

Permalink
Url decode redirect url
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdemooij9 committed Jun 15, 2024
1 parent 72aa329 commit c46fb42
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ public RedirectFindResult GetByUrl(Uri uri)
var pathAndQuery = uri.PathAndQuery.CleanUrl();
var globalUrls = new List<string>
{
uri.AbsolutePath.CleanUrl(),
pathAndQuery
WebUtility.UrlDecode(uri.AbsolutePath.CleanUrl()),
WebUtility.UrlDecode(pathAndQuery)
};
List<string> domainUrls = null;

Expand Down

0 comments on commit c46fb42

Please sign in to comment.