From 54601b870b49e6dbe5f16163ed81bd31e8ef5e73 Mon Sep 17 00:00:00 2001 From: MrSmoke Date: Wed, 5 Mar 2014 08:47:57 +1100 Subject: [PATCH] Fixed import task not working --- Lastfm-Scrobbler/Api/BaseLastfmApiClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lastfm-Scrobbler/Api/BaseLastfmApiClient.cs b/Lastfm-Scrobbler/Api/BaseLastfmApiClient.cs index 9112e0e..951b887 100644 --- a/Lastfm-Scrobbler/Api/BaseLastfmApiClient.cs +++ b/Lastfm-Scrobbler/Api/BaseLastfmApiClient.cs @@ -103,11 +103,11 @@ public async Task Get(TRequest request, Cancella #region Private methods private static string BuildGetUrl(Dictionary requestData) { - return Uri.EscapeDataString(String.Format("http://{0}/{1}/?format=json&{2}", + return String.Format("http://{0}/{1}/?format=json&{2}", Strings.Endpoints.LastfmApi, ApiVersion, Helpers.DictionaryToQueryString(requestData) - )); + ); } private static string BuildPostUrl(bool secure = false)