mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_admin_shell: Tighten up type checks to fix #1754 (thanks clouded)
Due to the dummy statistics provider (see core.statsmanager line 250) having a metatable that allows infinite indexing where everything is always the same table, which end up in suf() in the concatenation line.
This commit is contained in:
parent
6a9efa5a52
commit
dc79c92cbc
1 changed files with 2 additions and 2 deletions
|
@ -49,12 +49,12 @@ local function capitalize(s)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function pre(prefix, str, alt)
|
local function pre(prefix, str, alt)
|
||||||
if (str or "") == "" then return alt or ""; end
|
if type(str) ~= "string" or str == "" then return alt or ""; end
|
||||||
return prefix .. str;
|
return prefix .. str;
|
||||||
end
|
end
|
||||||
|
|
||||||
local function suf(str, suffix, alt)
|
local function suf(str, suffix, alt)
|
||||||
if (str or "") == "" then return alt or ""; end
|
if type(str) ~= "string" or str == "" then return alt or ""; end
|
||||||
return str .. suffix;
|
return str .. suffix;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue