Merge 0.9->trunk
[prosody.git] / plugins / mod_lastactivity.lua
index acbfb87d829bbf07f96cb0671cfeee9cbca069bb..11053709bc0b99239ab21ce3bd7d080541a48a79 100644 (file)
@@ -1,6 +1,6 @@
 -- Prosody IM
--- Copyright (C) 2008-2009 Matthew Wild
--- Copyright (C) 2008-2009 Waqas Hussain
+-- Copyright (C) 2008-2010 Matthew Wild
+-- Copyright (C) 2008-2010 Waqas Hussain
 -- 
 -- This project is MIT/X11 licensed. Please see the
 -- COPYING file in the source package for more information.
@@ -23,7 +23,7 @@ module:hook("pre-presence/bare", function(event)
                s = s and #s.tags == 0 and s[1] or "";
                map[event.origin.username] = {s = s, t = t};
        end
-end);
+end, 10);
 
 module:hook("iq/bare/jabber:iq:last:query", function(event)
        local origin, stanza = event.origin, event.stanza;
@@ -42,3 +42,11 @@ module:hook("iq/bare/jabber:iq:last:query", function(event)
                return true;
        end
 end);
+
+module.save = function()
+       return {map = map};
+end
+module.restore = function(data)
+       map = data.map or {};
+end
+