Fixed an encoding problem

This commit is contained in:
ScottIsAFool
2013-11-29 18:23:43 +00:00
parent 7324dd5952
commit 7083982764
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ namespace PocketWP
public static bool HasPocketItem(Uri uri)
{
// /Protocol?encodedLaunchUri=squirrel%3AAddNut%3Fnut%3D
return uri.ToString().Contains(HttpUtility.UrlEncode(PocketUrl));
return uri.ToString().Contains(Uri.EscapeDataString(PocketUrl));
}
/// <summary>
+2 -2
View File
@@ -32,6 +32,6 @@ using System.Resources;
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]