Fixed a key not found exception

This commit is contained in:
ScottIsAFool
2013-12-19 22:24:23 +00:00
parent c81d6ed82d
commit e2e5f43cff
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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
{ {
+2 -2
View File
@@ -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")]