You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (searchOptions.Filter is not null)
{
if (searchOptions.Filter is not null)
{
throw new ArgumentException("Either Filter or OldFilter can be specified, but not both");
}
// Old filter, we translate it to a list of SqliteWhereCondition, and merge these into the conditions we already
The first line should be:
if (searchOptions.OldFilter is not null)
Otherwise using Filter instead of OldFilter always throws.