Skip to content

Commit

Permalink
Correct skip function
Browse files Browse the repository at this point in the history
  • Loading branch information
arkadiuszbiel committed Sep 27, 2019
1 parent 3f3f2db commit fbd0cd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private ISearchResponse<Document> DoSearch(int? skip)
public IEnumerable<ISearchResult> Skip(int skip)
{
var result = DoSearch(skip);
return ConvertResult(result);
return result.ConvertResult();
}
}
}

0 comments on commit fbd0cd5

Please sign in to comment.