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 new PocketDataItem
{ {
Uri = urlToAdd, Uri = Uri.UnescapeDataString(urlToAdd),
Title = title Title = Uri.UnescapeDataString(title)
} }
} }
}; };