Description
Searching tags using “All the above tags” (AND) does a substring match instead of a full string comparison when returning search results.
Ex. tags:vr+the-handy
Shows tags with “the-handy” and “non-vr” and “vr” when it should be returning results with only "the-handy’ and “vr”.
From what I’ve seen, this only affects tags that appear as a substring of another tag.
I’d imagine the backend query for this search would be something along the lines of WHERE Tag LIKE '%the-handy%' AND Tag LIKE '%vr%'
. Which would return topics/posts that are tagged as “vr” and “non-vr”.