Skip to content

Commit

Permalink
Merge pull request #4 from mathiasnohall/master
Browse files Browse the repository at this point in the history
Allow case sensitive redirect urls
  • Loading branch information
evest committed Feb 10, 2016
2 parents 787722b + bc2e102 commit 999ced8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Core/CustomRedirects/CustomRedirect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public string OldUrl
{
get
{
return _oldUrl.ToLower();
return _oldUrl.ToLower();
}
set
{
Expand All @@ -53,7 +53,7 @@ public string NewUrl
get
{

return _newUrl != null ? _newUrl.ToLower() : null;
return _newUrl != null ? _newUrl : null;
}
set
{
Expand Down
4 changes: 2 additions & 2 deletions src/Core/Obsolete/CustomRedirect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public string OldUrl
{
get
{
return _oldUrl.ToLower();
return _oldUrl.ToLower();
}
set
{
Expand All @@ -52,7 +52,7 @@ public string NewUrl
{
get
{
return _newUrl.ToLower();
return _newUrl;
}
set
{
Expand Down

0 comments on commit 999ced8

Please sign in to comment.