Skip to content

Commit

Permalink
Fix: Revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
TEALC82 committed Jul 14, 2024
1 parent 771b494 commit 48f1cc0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions stream_fusion/utils/zilean/zilean_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,7 @@ def __search_movie(self, movie):

def __search_series(self, series):
unique_titles = self.__remove_duplicate_titles(series.titles)
if series.origin == "JP":
clean_titles = series.titlealt
else:
clean_titles = [self.__clean_title(title) for title in unique_titles]
clean_titles = [self.__clean_title(title) for title in unique_titles]
search_texts = clean_titles.copy()

if hasattr(series, 'season') and hasattr(series, 'episode'):
Expand Down

0 comments on commit 48f1cc0

Please sign in to comment.