Skip to content

Commit

Permalink
hotfix: correct url with query
Browse files Browse the repository at this point in the history
  • Loading branch information
javorosas committed Sep 5, 2018
1 parent 4863da3 commit 41ec6df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion facturapi-net/Router/Router.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ private static string UriWithQuery(string path, Dictionary<string, object> query
var url = path;
if (query != null)
{
return $"{path}{DictionaryToQueryString(query)}";
return $"{path}?{DictionaryToQueryString(query)}";
}
else
{
Expand Down

0 comments on commit 41ec6df

Please sign in to comment.