Fixed a key not found exception
This commit is contained in:
@@ -77,7 +77,7 @@ namespace PocketWP
|
|||||||
throw new ArgumentNullException("data", "Your item can't be null");
|
throw new ArgumentNullException("data", "Your item can't be null");
|
||||||
}
|
}
|
||||||
|
|
||||||
var url = PocketUrl + data.ToEscapedJson();
|
var url = string.Format("{0}Data={1}", PocketUrl, data.ToEscapedJson());
|
||||||
|
|
||||||
await Windows.System.Launcher.LaunchUriAsync(new Uri(url));
|
await Windows.System.Launcher.LaunchUriAsync(new Uri(url));
|
||||||
}
|
}
|
||||||
@@ -126,7 +126,7 @@ namespace PocketWP
|
|||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
var itemJson = Uri.UnescapeDataString(queryString["Add"]);
|
var itemJson = Uri.UnescapeDataString(queryString["Data"]);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -31,6 +31,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.6")]
|
[assembly: AssemblyVersion("1.0.0.7")]
|
||||||
[assembly: AssemblyFileVersion("1.0.0.6")]
|
[assembly: AssemblyFileVersion("1.0.0.7")]
|
||||||
[assembly: NeutralResourcesLanguageAttribute("en-US")]
|
[assembly: NeutralResourcesLanguageAttribute("en-US")]
|
||||||
|
|||||||
Reference in New Issue
Block a user