Fix bundled search for titles with ™ and ® in them

This commit is contained in:
Nichlas Severinsen 2021-11-27 23:39:49 +01:00
parent 88d1b48167
commit 928ff3128f
2 changed files with 3 additions and 1 deletions

View file

@ -189,7 +189,8 @@ def multiman_title(title):
replace = {
':': ' -',
'/': '-',
'': ' -',
'': '',
'®': '',
}
for key, val in replace.items():