Updated matching with latest changes, Added override toggle for quickmatch, added asin and isbn to quickmatch query, updated audible provider to use audnexus

This commit is contained in:
Kaldigo 2022-05-23 03:56:51 +01:00
parent f2e16017f6
commit d15264832d
8 changed files with 192 additions and 98 deletions

View file

@ -48,7 +48,7 @@ class Series {
}
checkNameEquals(name) {
if (!name) return false
if (!name || !this.name) return false
return this.name.toLowerCase() == name.toLowerCase().trim()
}
}