mod_muc: The default room name is the room node
[prosody.git] / util / uuid.lua
index 0baf45b9cb57f4158282d9ada0774348af190f2a..fd21dfcc40e08b04de1fb4f6bffd62ff587dd71f 100644 (file)
@@ -1,6 +1,6 @@
--- Prosody IM v0.2
--- Copyright (C) 2008 Matthew Wild
--- Copyright (C) 2008 Waqas Hussain
+-- Prosody IM v0.4
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
 -- 
 -- This project is MIT/X11 licensed. Please see the
 -- COPYING file in the source package for more information.
@@ -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;
\ No newline at end of file