mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
Filtering invoices by StartDate and EndDate
Now it's required to separate parameters with comma. Forced to do this because dates have spaces between date and time part
This commit is contained in:
committed by
Rockstar Developer
parent
3b91b38014
commit
d5bd0ee781
@@ -463,7 +463,7 @@ retry:
|
||||
{
|
||||
// Hacky way to return an empty query object. The nice way is much too elaborate:
|
||||
// https://stackoverflow.com/questions/33305495/how-to-return-empty-iqueryable-in-an-async-repository-method
|
||||
return query.Where(x => false);
|
||||
return query.Where(x => false);
|
||||
}
|
||||
query = query.Where(i => ids.Contains(i.Id));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user