Merge 0.10->trunk
[prosody.git] / plugins / mod_offline.lua
index 1ac62f94737a70ad17ab5401ab01a63c2776d5f9..08ab8490bbc90a8743b1c91cf068a4466ccb49f1 100644 (file)
@@ -1,7 +1,7 @@
 -- Prosody IM
 -- 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.
 --
@@ -24,13 +24,13 @@ module:hook("message/offline/handle", function(event)
        else
                node, host = origin.username, origin.host;
        end
-       
+
        stanza.attr.stamp, stanza.attr.stamp_legacy = datetime.datetime(), datetime.legacy();
        local result = datamanager.list_append(node, host, "offline", st.preserialize(stanza));
        stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil;
-       
+
        return result;
-end);
+end, -1);
 
 module:hook("message/offline/broadcast", function(event)
        local origin = event.origin;
@@ -48,4 +48,4 @@ module:hook("message/offline/broadcast", function(event)
        end
        datamanager.list_store(node, host, "offline", nil);
        return true;
-end);
+end, -1);