mirror of
https://github.com/morpheus65535/bazarr
synced 2025-03-04 10:28:15 +00:00
Fix for #729
This commit is contained in:
parent
7c987ac8f7
commit
2efa3c9f86
1 changed files with 2 additions and 1 deletions
|
@ -183,7 +183,8 @@ class Addic7edProvider(_Addic7edProvider):
|
|||
:rtype: int
|
||||
"""
|
||||
show_id = None
|
||||
ids_to_look_for = {sanitize(series).lower(), sanitize(series.replace(".", "")).lower()}
|
||||
ids_to_look_for = {sanitize(series).lower(), sanitize(series.replace(".", "")).lower(),
|
||||
sanitize(series.replace("&", "and")).lower()}
|
||||
show_ids = self._get_show_ids()
|
||||
if ignore_cache or not show_ids:
|
||||
show_ids = self._get_show_ids.refresh(self)
|
||||
|
|
Loading…
Add table
Reference in a new issue