Skip to content

Commit

Permalink
Fixed import task not working
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSmoke committed Mar 4, 2014
1 parent bc65499 commit 54601b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lastfm-Scrobbler/Api/BaseLastfmApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ public async Task<TResponse> Get<TRequest, TResponse>(TRequest request, Cancella
#region Private methods
private static string BuildGetUrl(Dictionary<string, string> 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)
Expand Down

0 comments on commit 54601b8

Please sign in to comment.