From 9d213d309f9553d6b341b8e65bb722c7919ddda5 Mon Sep 17 00:00:00 2001 From: ceee Date: Sun, 7 Jul 2013 22:31:29 +0200 Subject: [PATCH] fix callbackUri escaping in authentication process; --- PocketSharp/Components/Authentification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PocketSharp/Components/Authentification.cs b/PocketSharp/Components/Authentification.cs index abc204e..10f7605 100644 --- a/PocketSharp/Components/Authentification.cs +++ b/PocketSharp/Components/Authentification.cs @@ -50,7 +50,7 @@ namespace PocketSharp RequestCode = requestCode; } - return new Uri(string.Format(authentificationUri, RequestCode, Uri.EscapeDataString(CallbackUri))); + return new Uri(string.Format(authentificationUri, RequestCode, CallbackUri)); }