Skip to content

Commit

Permalink
Merge pull request #30 from unosquare/mariodivece-patch-1
Browse files Browse the repository at this point in the history
Update Extensions.cs #29
  • Loading branch information
mariodivece committed Apr 4, 2016
2 parents cb6fab1 + 4abe6f4 commit 193d02c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Unosquare.Labs.EmbedIO/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public static Dictionary<string, string> RequestFormData(this HttpListenerContex

return stringData.Split('&')
.ToDictionary(c => c.Split('=')[0],
c => Uri.UnescapeDataString(c.Split('=')[1]));
c => WebUtility.UrlDecode(c.Split('=')[1]));
}
}
}
Expand Down Expand Up @@ -336,4 +336,4 @@ public static string ComputeMd5Hash(string input)
return ComputeMd5Hash(Encoding.ASCII.GetBytes(input));
}
}
}
}

0 comments on commit 193d02c

Please sign in to comment.