Skip to content

Commit

Permalink
Use SearchRedirectUrls (#16285)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolajlauridsen authored May 15, 2024
1 parent 3c4da9d commit e46a8d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Umbraco.Core/Services/IRedirectUrlService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,6 @@ IEnumerable<IRedirectUrl> SearchRedirectUrls(string searchTerm, int skip, int ta
{
PaginationHelper.ConvertSkipTakeToPaging(skip, take, out var pageNumber, out var pageSize);

return GetAllRedirectUrls(pageNumber, pageSize, out total);
return SearchRedirectUrls(searchTerm, pageNumber, pageSize, out total);
}
}

0 comments on commit e46a8d2

Please sign in to comment.