Ruizhi2001 / ped

0 stars 0 forks source link

Unintended effect from Advanced filtering using the find feature #9

Open Ruizhi2001 opened 10 months ago

Ruizhi2001 commented 10 months ago

When i try to search for people with "do" in their name and without "do" in their name using find n/do && !n/do. I should expect to see a list of everyone in my address book. image.png but instead I get a list with 0 people listed. The effect is the same when I flip the filters e.g find !n/do && n/do. image.png

kokrui commented 10 months ago

hey, just fyi we're closing this as wontfix because

some_condition && !some_condition is meant to always be false -- it seems like you intended to use || / OR which I believe works in this case, but it's a useful tc nonetheless! (for OR)