Skip to content

Commit

Permalink
Literal search means literal. Perform zero changes to string
Browse files Browse the repository at this point in the history
  • Loading branch information
mizaki committed Dec 19, 2023
1 parent 0223c28 commit 97daa5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcd_talker/gcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def search_for_series(
literal: bool = False,
series_match_thresh: int = 90,
) -> list[ComicSeries]:
search_series_name = utils.sanitize_title(series_name, literal)
search_series_name = series_name
if not literal:
# Make the search fuzzier
search_series_name = search_series_name.replace(" ", "%") + "%"
Expand Down

0 comments on commit 97daa5f

Please sign in to comment.