From 3e65a71ce6c7d40192c6fccb5af4c2634cc5d3ed Mon Sep 17 00:00:00 2001 From: "eddyverbruggen@gmail.com" Date: Wed, 22 Apr 2015 22:02:16 +0200 Subject: [PATCH] #4 Upgrading the JS API to prepare for custom options (no additional options yet, this is a change to make that possible in the future) --- src/wp8/Toast.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp8/Toast.cs b/src/wp8/Toast.cs index 74730bb..5c310c4 100644 --- a/src/wp8/Toast.cs +++ b/src/wp8/Toast.cs @@ -1,3 +1,4 @@ +using System; using System.Runtime.Serialization; using System.Threading.Tasks; using System.Windows; @@ -48,7 +49,7 @@ namespace WPCordovaClassLib.Cordova.Commands try { - toastOptions = JsonHelper.Deserialize(jsonOptions); + toastOptions = JSON.JsonHelper.Deserialize(jsonOptions); } catch (Exception) {