We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac875b1 commit 55599adCopy full SHA for 55599ad
src/RestSharp/RestRequest.cs
@@ -88,7 +88,7 @@ public RestRequest(string resource, Method method, DataFormat dataFormat) : this
88
}
89
90
static IEnumerable<NameValuePair> ParseQuery(string query)
91
- => query.Split('&')
+ => query.Split(new char[] { '&' }, StringSplitOptions.RemoveEmptyEntries)
92
.Select(
93
x =>
94
{
0 commit comments