Skip to content

Commit

Permalink
Actually fix #12
Browse files Browse the repository at this point in the history
  • Loading branch information
dlesbre committed Feb 20, 2024
1 parent 25f3917 commit a98ea1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bibtexautocomplete/APIs/doi.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def check_url(self, url: Optional[str]) -> bool:
data = final.data.decode()
with open("dump.text", "w") as file:
file.write(data)
text = normalize_str_weak(data, from_latex=True)
text = normalize_str_weak(data, from_latex=False)
for elem in self.not_available_checks:
if elem in text:
logger.debug("INVALID TEXT IN RESPONSE PAGE " + elem)
Expand Down

0 comments on commit a98ea1c

Please sign in to comment.