mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.interpolation: Fix combination of filters and fallback values #1623
This commit is contained in:
parent
0303e09dbb
commit
206be83885
1 changed files with 2 additions and 2 deletions
|
@ -43,11 +43,11 @@ local function new_render(pat, escape, funcs)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if funcs then
|
if funcs then
|
||||||
while value ~= nil and opt == '|' do
|
while opt == '|' do
|
||||||
local f;
|
local f;
|
||||||
f, raw, opt, e = s_match(block, "^([%a_][%w_.]*)(!?)(%p?)()", e);
|
f, raw, opt, e = s_match(block, "^([%a_][%w_.]*)(!?)(%p?)()", e);
|
||||||
f = funcs[f];
|
f = funcs[f];
|
||||||
if f then value = f(value); end
|
if value ~= nil and f then value = f(value); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if opt == '#' or opt == '%' then
|
if opt == '#' or opt == '%' then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue