diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-15 00:35:09 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-15 00:35:09 +0000 |
commit | 785e99a1afd75882fed1f1f7ca8d7daa1bf34018 (patch) | |
tree | 033cd05b2127aa173d0726b9ba1c61298512249f /core/offlinemanager.lua | |
parent | 1c704dcef79c640ffdbc259af63c29ac47599e89 (diff) | |
parent | fc57c3a09a9ca234f45bb3a1e9b3d8fd8d48d2e0 (diff) | |
download | prosody-785e99a1afd75882fed1f1f7ca8d7daa1bf34018.tar.gz prosody-785e99a1afd75882fed1f1f7ca8d7daa1bf34018.zip |
Merge from waqas
Diffstat (limited to 'core/offlinemanager.lua')
-rw-r--r-- | core/offlinemanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/offlinemanager.lua b/core/offlinemanager.lua index 283de5e3..e71da446 100644 --- a/core/offlinemanager.lua +++ b/core/offlinemanager.lua @@ -16,7 +16,7 @@ function load(node, host) local data = datamanager.list_load(node, host, "offline");
if not data then return; end
for k, v in ipairs(data) do
- stanza = st.deserialize(v);
+ local stanza = st.deserialize(v);
stanza:tag("delay", {xmlns = "urn:xmpp:delay", from = host, stamp = stanza.attr.stamp}):up(); -- XEP-0203
stanza:tag("x", {xmlns = "jabber:x:delay", from = host, stamp = stanza.attr.stamp_legacy}):up(); -- XEP-0091 (deprecated)
stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil;
|