diff --git a/web_view.py b/web_view.py index 0f8a1c6..354ee95 100755 --- a/web_view.py +++ b/web_view.py @@ -289,8 +289,8 @@ def get_best_hit(title: str, hits: list[Hit]) -> tuple[Hit, dict[str, typing.Any for hit in hits: if hit["title"].lower() == title.lower(): continue - if match_type(title, hit["snippet"]) != "exact": - continue + # if match_type(title, hit["snippet"]) != "exact": + # continue try: print(f'get diff: {hit["title"]}, {title}')