diff --git a/Source/Seal.spoon/seal_useractions.lua b/Source/Seal.spoon/seal_useractions.lua index 0e3559f7..33b4355f 100644 --- a/Source/Seal.spoon/seal_useractions.lua +++ b/Source/Seal.spoon/seal_useractions.lua @@ -255,7 +255,7 @@ function obj.completionCallback(row) local fn = obj.all_actions[row.text].fn fn() elseif row.type == 'openURL' then - local url = obj.all_actions[row.text].url + local url = string.gsub(obj.all_actions[row.text].url, '${query}', "") obj.openURL(url) elseif row.type == 'addURL' then obj.stored_actions[row.name] = { url = row.url }