Skip to content

Commit

Permalink
Fix displayed hyperlinks
Browse files Browse the repository at this point in the history
Fixes #2102
  • Loading branch information
ppfeister committed May 7, 2024
1 parent f5796c2 commit 2ff115f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sherlock/sherlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def sherlock(
headers.update(net_info["headers"])

# URL of user on site (if it exists)
url = interpolate_string(net_info["url"], username)
url = interpolate_string(net_info["url"], username.replace(' ', '%20'))

# Don't make request if username is invalid for the site
regex_check = net_info.get("regexCheck")
Expand Down

0 comments on commit 2ff115f

Please sign in to comment.