Skip to content

Commit

Permalink
Revert "Hopefully fix #105. Escapes every "&" in the URL". Fixes #107
Browse files Browse the repository at this point in the history
This reverts commit 136c4ce.
  • Loading branch information
firecat53 committed Aug 19, 2021
1 parent 4034d64 commit 54c2b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urlscan/urlchoose.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ def browse(*args):
self.search = False
self.enter = False
elif self.link_open_modes[0] == "Web Browser":
webbrowser.open(url.replace('&', '\&'))
webbrowser.open(url)
elif self.link_open_modes[0] == "Xdg-Open":
run = 'xdg-open "{}"'.format(url)
process = Popen(shlex.split(run), stdout=PIPE, stdin=PIPE)
Expand Down

0 comments on commit 54c2b12

Please sign in to comment.