Fix bundled search for titles with ™ and ® in them
This commit is contained in:
parent
88d1b48167
commit
928ff3128f
2 changed files with 3 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -3,6 +3,7 @@
|
|||
*.gz
|
||||
*.db
|
||||
*.zip
|
||||
*.rar
|
||||
|
||||
PS3_GAME/
|
||||
PS3_UPDATE/
|
||||
|
|
|
|||
|
|
@ -189,7 +189,8 @@ def multiman_title(title):
|
|||
replace = {
|
||||
':': ' -',
|
||||
'/': '-',
|
||||
'™': ' -',
|
||||
'™': '',
|
||||
'®': '',
|
||||
}
|
||||
|
||||
for key, val in replace.items():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue