Fixed issue with MemberPicker not working if searching for specific member types.

This commit is contained in:
Bjarke Berg
2021-06-21 21:47:40 +02:00
parent ff99e6c6fd
commit 1b1a1f1f59

View File

@@ -608,7 +608,7 @@ namespace Umbraco.Cms.Web.BackOffice.Controllers
//TODO: We should really fix this in the EntityService but if we don't we should allow the ISearchableTree for the members controller
// to be used for this search instead of the built in/internal searcher
var searchResult = _treeSearcher.ExamineSearch(filter ?? "", type, pageSize, pageNumber - 1, out long total, id);
var searchResult = _treeSearcher.ExamineSearch(filter ?? "", type, pageSize, pageNumber - 1, out long total, null, id);
return new PagedResult<EntityBasic>(total, pageNumber, pageSize)
{