diff options
Diffstat (limited to 'browserenv.go')
-rw-r--r-- | browserenv.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/browserenv.go b/browserenv.go index 678b651..ae1024f 100644 --- a/browserenv.go +++ b/browserenv.go @@ -82,7 +82,7 @@ func browserCommand(command, url string) *exec.Cmd { if browserCommandIncludesURL(command) { command = fmtWithURL(command, url) } else { - command = escapeBrowserCommand(command, url) + command = shellEscapeCommand(command, url) } args = append(args, command) |