Fixed an encoding problem
This commit is contained in:
@@ -88,7 +88,7 @@ namespace PocketWP
|
|||||||
public static bool HasPocketItem(Uri uri)
|
public static bool HasPocketItem(Uri uri)
|
||||||
{
|
{
|
||||||
// /Protocol?encodedLaunchUri=squirrel%3AAddNut%3Fnut%3D
|
// /Protocol?encodedLaunchUri=squirrel%3AAddNut%3Fnut%3D
|
||||||
return uri.ToString().Contains(HttpUtility.UrlEncode(PocketUrl));
|
return uri.ToString().Contains(Uri.EscapeDataString(PocketUrl));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -32,6 +32,6 @@ using System.Resources;
|
|||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
// You can specify all the values or you can default the Revision and Build Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.0.0.0")]
|
[assembly: AssemblyVersion("1.0.0.1")]
|
||||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
[assembly: AssemblyFileVersion("1.0.0.1")]
|
||||||
[assembly: NeutralResourcesLanguageAttribute("en-US")]
|
[assembly: NeutralResourcesLanguageAttribute("en-US")]
|
||||||
|
|||||||
Reference in New Issue
Block a user