File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 15
15
<PackageTags >fluent httpclient rest http api web client</PackageTags >
16
16
<AssemblyVersion >$(Version)</AssemblyVersion >
17
17
<FileVersion >$(Version)</FileVersion >
18
- <Version >4.2.2 </Version >
18
+ <Version >4.2.3 </Version >
19
19
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
20
20
<GenerateDocumentationFile >true</GenerateDocumentationFile >
21
21
<PackageReadmeFile >README.md</PackageReadmeFile >
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ internal static class ListExtensions
15
15
/// <returns></returns>
16
16
public static string ToQueryString ( this List < string > collection )
17
17
{
18
- return $ "?{ string . Join ( "&" , collection ) } ";
18
+ return ( collection . Count == 0 )
19
+ ? string . Empty
20
+ : $ "?{ string . Join ( "&" , collection ) } ";
19
21
}
20
22
}
You can’t perform that action at this time.
0 commit comments