Skip to content

Commit

Permalink
Reverted change to name-based URLs for the MVP dir
Browse files Browse the repository at this point in the history
  • Loading branch information
robearlam committed Apr 16, 2024
1 parent 4f7aa48 commit 7d14138
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static DirectoryResultViewModel FromMvpProfile(MvpProfile profile, Uri? p
result.Year = last.Application.Selection.Year.ToString();
if (pageUri != null && !string.IsNullOrWhiteSpace(result.Name))
{
result.ProfileUri = pageUri.AddSegment(result.Name.EncodeSpaces());
result.ProfileUri = pageUri.AddQueryString("id", profile.Id.ToString("N"));
}

return result;
Expand Down

0 comments on commit 7d14138

Please sign in to comment.