* [AssetBrowser] BugFix: Correct a logic error in the filtering of the asset browser causing tags queries to display all assets.

This commit is contained in:
Robert MacGregor 2021-10-02 16:22:55 -04:00
parent 8256aca65e
commit 1676d102f3

View file

@ -1802,7 +1802,7 @@ function matchesSearch(%assetName, %assetType)
}
else
{
if(%assetName.tags !$= %word)
if(strstr(strlwr(%assetName.tags), strlwr(%word)) != -1)
%matchTags = true;
}
}