Dealing with hyperlinks bytes decoding #34
sonofliberty2000-del
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello and thank you for creating such an awesome tool that I absolutely love to use!
I have encounter a small bug with hyperlinks that are decoded in a certain way, which can be easily fixed
Between lines 304-305 if we add these lines:
if isinstance(hyperlink, bytes):
hyperlink = hyperlink.decode("utf-8")
The issue could potentially be resolved :)
Beta Was this translation helpful? Give feedback.
All reactions