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

1
.gitignore vendored
View file

@ -3,6 +3,7 @@
*.gz
*.db
*.zip
*.rar
PS3_GAME/
PS3_UPDATE/

View file

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