Skip to content

Commit

Permalink
Merge pull request #2105 from ppfeister/bugfix/broken-urls-2102
Browse files Browse the repository at this point in the history
Fix displayed hyperlinks
  • Loading branch information
sdushantha committed May 7, 2024
2 parents c470cab + 2ff115f commit c939445
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 c939445

Please sign in to comment.