Forgot to uri decode the url and title
This commit is contained in:
@@ -114,8 +114,8 @@ namespace PocketWP
|
||||
{
|
||||
new PocketDataItem
|
||||
{
|
||||
Uri = urlToAdd,
|
||||
Title = title
|
||||
Uri = Uri.UnescapeDataString(urlToAdd),
|
||||
Title = Uri.UnescapeDataString(title)
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user