Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
hoseinzadehashraf committed Apr 18, 2024
1 parent 5e7bc58 commit 1cb859f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Domain/Theme/ThemeProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,7 @@ private string RenderSidebarProfileUrl(string sidebarProfileUrl, Dictionary<stri
{
foreach (var key in parameters.Keys)
{
var value = key == "EMAIL" ? parameters[key].Replace("+", "%252B") : parameters[key];
sidebarProfileUrl = sidebarProfileUrl.Replace($"%{key}%", value);
sidebarProfileUrl = sidebarProfileUrl.Replace($"%{key}%", parameters[key]);
}

return sidebarProfileUrl;
Expand Down
2 changes: 1 addition & 1 deletion Olive.Microservices.Hub.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Authors>Geeks Ltd</Authors>
<RepositoryUrl>https://github.com/Geeksltd/Olive.Microservices.Hub/tree/master/Olive.Microservices.Hub</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<Version>1.5.41</Version>
<Version>1.5.42</Version>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<Nullable>warnings</Nullable>
Expand Down

0 comments on commit 1cb859f

Please sign in to comment.