Forgot to uri decode the url and title

This commit is contained in:
ScottIsAFool
2013-12-10 18:01:10 +00:00
parent 06d8de9393
commit 5f0f22e092
+2 -2
View File
@@ -114,8 +114,8 @@ namespace PocketWP
{
new PocketDataItem
{
Uri = urlToAdd,
Title = title
Uri = Uri.UnescapeDataString(urlToAdd),
Title = Uri.UnescapeDataString(title)
}
}
};