mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +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 m_random = math.random;
|
||||||
|
local tostring = tostring;
|
||||||
module "uuid"
|
module "uuid"
|
||||||
|
|
||||||
function generate()
|
function generate()
|
||||||
return m_random(0, 99999999);
|
return tostring(m_random(0, 99999999));
|
||||||
end
|
end
|
||||||
|
|
||||||
return _M;
|
return _M;
|
Loading…
Add table
Add a link
Reference in a new issue