aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/ext/menu.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/menu.lua b/core/ext/menu.lua
index 703910e7..8dc44b03 100644
--- a/core/ext/menu.lua
+++ b/core/ext/menu.lua
@@ -330,7 +330,7 @@ local function open_webpage(url)
local p = io.popen(cmd)
if not p then error(l.MENU_BROWSER_ERROR..url) else p:close() end
else
- cmd = string.format(MAC and 'open "file://%s"' or 'xdg-open "%s"', url)
+ cmd = string.format(MAC and 'open "file://%s"' or 'xdg-open "%s" &', url)
if os.execute(cmd) ~= 0 then error(l.MENU_BROWSER_ERROR..url) end
end
end