Procházet zdrojové kódy

[Minor] Multimap: Also handle table like options

tags/2.3
Vsevolod Stakhov před 4 roky
rodič
revize
d727dda235
1 změnil soubory, kde provedl 6 přidání a 1 odebrání
  1. 6
    1
      src/plugins/lua/multimap.lua

+ 6
- 1
src/plugins/lua/multimap.lua Zobrazit soubor

@@ -590,7 +590,12 @@ local function multimap_callback(task, rule)


if opt then
task:insert_result(forced, symbol, score, tostring(opt))
if type(opt) == 'table' then
task:insert_result(forced, symbol, score, fun.totable(fun.map(tostring, opt)))
else
task:insert_result(forced, symbol, score, tostring(opt))
end

else
task:insert_result(forced, symbol, score)
end

Načítá se…
Zrušit
Uložit