This commit is contained in:
Izaya 2020-07-14 04:28:41 +10:00
parent 08dc2dc1ff
commit aa66dfb292
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ local programs = {
for k,v in pairs(tA) do
local domain = v:match("https?://(.-)/")
local program = programs[domain] or default
os.execute(string.format("%s %s",program, v))
os.execute(string.format("%s '%s'",program, v))
end