Skip to content

Commit

Permalink
Named null argument
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierdecoster committed May 3, 2017
1 parent c5f5ee8 commit 42bc69e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NuGetGallery/Controllers/PackagesController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,9 @@ public virtual async Task<ActionResult> ListPackages(PackageListSearchViewModel
var searchFilter = SearchAdaptor.GetSearchFilter(
q,
page,
null,
SearchFilter.UISearchContext,
SemVerLevelKey.SemVerLevel2);
sortOrder: null,
context: SearchFilter.UISearchContext,
semVerLevel: SemVerLevelKey.SemVerLevel2);

results = await _searchService.Search(searchFilter);

Expand Down

0 comments on commit 42bc69e

Please sign in to comment.