mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
util.termcolours: Use explicit number formatting instead of coercion on concatenation
This commit is contained in:
parent
3731922cb2
commit
2e216150e8
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ end
|
||||||
setmetatable(stylemap, { __index = function(_, style)
|
setmetatable(stylemap, { __index = function(_, style)
|
||||||
if type(style) == "string" and style:find("%x%x%x%x%x%x") == 1 then
|
if type(style) == "string" and style:find("%x%x%x%x%x%x") == 1 then
|
||||||
local g = style:sub(7) == " background" and "48;5;" or "38;5;";
|
local g = style:sub(7) == " background" and "48;5;" or "38;5;";
|
||||||
return g .. color(hex2rgb(style));
|
return format("%s%d", g, color(hex2rgb(style)));
|
||||||
end
|
end
|
||||||
end } );
|
end } );
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue