mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.termcolours: Use explicit number formatting instead of coercion on concatenation
This commit is contained in:
parent
bc6a329167
commit
c890928e76
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ end
|
|||
setmetatable(stylemap, { __index = function(_, style)
|
||||
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;";
|
||||
return g .. color(hex2rgb(style));
|
||||
return format("%s%d", g, color(hex2rgb(style)));
|
||||
end
|
||||
end } );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue