Merge pull request #600 from Ragora/bugfix-asset-browser-tags

* BugFix: Correct tags in the asset browser not filtering correctly
This commit is contained in:
Brian Roberts 2021-10-03 17:06:37 -05:00 committed by GitHub
commit 6ff9383672
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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