Skip to content

Commit

Permalink
Merge pull request NuGet#27 from gep13/order-by-popularity-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiringWorm authored Feb 23, 2023
2 parents 45fcb12 + 23922b1 commit 5af6acb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ private string BuildOrderBy(SearchOrderBy? searchOrderBy)
//////////////////////////////////////////////////////////

case SearchOrderBy.DownloadCount:
orderBy = DownloadCountProperty;
orderBy = string.Format("{0}%20desc,{1}", DownloadCountProperty, IdProperty);
break;

//////////////////////////////////////////////////////////
Expand Down

0 comments on commit 5af6acb

Please sign in to comment.