mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
add comment
This commit is contained in:
parent
66af258876
commit
2083954aa5
@ -95,7 +95,8 @@ namespace BTCPayServer.Services.Notifications
|
||||
query = query.Where(store => store.DisabledNotifications != "all");
|
||||
foreach (string term in terms)
|
||||
{
|
||||
// ReSharper disable once CA1307
|
||||
// Cannot specify StringComparison as EF core does not support it and would attempt client-side evaluation
|
||||
// ReSharper disable once CA1307
|
||||
query = query.Where(user => user.DisabledNotifications == null || !user.DisabledNotifications.Contains(term ));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user