Fix of interface in explorer, tags now working as AND and not OR

This commit is contained in:
2021-02-14 01:19:12 +01:00
parent b76734fe25
commit 04d3e099cb
3 changed files with 16 additions and 10 deletions

View File

@ -363,12 +363,12 @@ jQuery(document).ready(function($)
return true;
splitTag = tag.split(", ");
for (t of splitTag)
for (t of paramTag)
{
if (paramTag.includes(t))
return true;
if (!splitTag.includes(t))
return false;
}
return false;
return true;
}
function checkPhoto(photo)