Add wallet policy support (#6765)

This commit is contained in:
Nicolas Dorier
2025-07-16 09:06:11 +09:00
committed by GitHub
parent 48fab4c5e6
commit 89c836e5f9
26 changed files with 91 additions and 39 deletions

View File

@@ -1125,7 +1125,7 @@ namespace BTCPayServer.Controllers
{
var appsById = apps.ToDictionary(a => a.Id);
var searchTexts = appIds.Select(a => appsById.TryGet(a)).Where(a => a != null)
.Select(a => AppService.GetAppSearchTerm(a.AppType, a.Id))
.Select(a => AppService.GetAppSearchTerm(a!.AppType, a!.Id))
.ToList();
searchTexts.Add(fs.TextSearch);
textSearch = string.Join(' ', searchTexts.Where(t => !string.IsNullOrEmpty(t)).ToList());