From 2efa3c9f86c72e4d53534d0c65b50eb7e809608f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Mon, 25 May 2020 09:22:13 -0400 Subject: [PATCH] Fix for #729 --- libs/subliminal_patch/providers/addic7ed.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/subliminal_patch/providers/addic7ed.py b/libs/subliminal_patch/providers/addic7ed.py index 5bb9a30eb..e5a19ec1c 100644 --- a/libs/subliminal_patch/providers/addic7ed.py +++ b/libs/subliminal_patch/providers/addic7ed.py @@ -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)