fix searching

This commit is contained in:
David 2021-10-31 19:25:44 -04:00
parent dcdff94712
commit 913ec3d05e
1 changed files with 4 additions and 4 deletions

View File

@ -124,10 +124,10 @@
function searchCleaner(str) {
return str
.toLowerCase()
.replace('"', "")
.replace(":", "")
.replace("'", "")
.replace(" ", "");
.replaceAll('"', "")
.replaceAll(":", "")
.replaceAll("'", "")
.replaceAll(" ", "");
}
function ISBNfromEAN(EAN) {