Invoice filter must work with duplicated filter

This commit is contained in:
nicolas.dorier
2018-04-26 11:01:59 +09:00
parent 8745c3f8c6
commit 16f1791a9a
7 changed files with 47 additions and 17 deletions

View File

@@ -87,8 +87,8 @@ namespace BTCPayServer.Controllers
StartDate = dateStart,
OrderId = orderId,
ItemCode = itemCode,
Status = status,
StoreId = store.Id
Status = status == null ? null : new[] { status },
StoreId = new[] { store.Id }
};