From 1b1a1f1f5969370956a534cb436e3d889d0a4038 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Mon, 21 Jun 2021 21:47:40 +0200 Subject: [PATCH] Fixed issue with MemberPicker not working if searching for specific member types. --- src/Umbraco.Web.BackOffice/Controllers/EntityController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.BackOffice/Controllers/EntityController.cs b/src/Umbraco.Web.BackOffice/Controllers/EntityController.cs index 2aa15e8ae9..6924780cd2 100644 --- a/src/Umbraco.Web.BackOffice/Controllers/EntityController.cs +++ b/src/Umbraco.Web.BackOffice/Controllers/EntityController.cs @@ -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(total, pageNumber, pageSize) {