mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.uuid: Return a string, not a number. Looked so innocent.
This commit is contained in:
parent
89d7887278
commit
6db4951194
1 changed files with 2 additions and 1 deletions
|
@ -9,10 +9,11 @@
|
|||
|
||||
|
||||
local m_random = math.random;
|
||||
local tostring = tostring;
|
||||
module "uuid"
|
||||
|
||||
function generate()
|
||||
return m_random(0, 99999999);
|
||||
return tostring(m_random(0, 99999999));
|
||||
end
|
||||
|
||||
return _M;
|
Loading…
Add table
Add a link
Reference in a new issue