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