# HG changeset patch # User Kim Alvefur # Date 1432202987 -7200 # Node ID e72f9eac51c8de64b7c3a72d9e0f8f94d26a7ab7 # Parent 0aeab7234d5e7c33fb91490c21707c225511d172 mod_storage_(various): Order swapping in 54c8a0cb2996 was backwards diff -r 0aeab7234d5e -r e72f9eac51c8 mod_storage_gdbm/mod_storage_gdbm.lua --- a/mod_storage_gdbm/mod_storage_gdbm.lua Thu May 21 11:56:35 2015 +0200 +++ b/mod_storage_gdbm/mod_storage_gdbm.lua Thu May 21 12:09:47 2015 +0200 @@ -75,7 +75,7 @@ function archive:append(username, key, value, when, with) if type(when) ~= "number" then - value, when, with = when, with, value; + when, with, value = value, when, with; end key = key or uuid(); diff -r 0aeab7234d5e -r e72f9eac51c8 mod_storage_memory/mod_storage_memory.lua --- a/mod_storage_memory/mod_storage_memory.lua Thu May 21 11:56:35 2015 +0200 +++ b/mod_storage_memory/mod_storage_memory.lua Thu May 21 12:09:47 2015 +0200 @@ -44,7 +44,7 @@ function archive_store:append(username, key, value, when, with) if type(when) ~= "number" then - value, when, with = when, with, value; + when, with, value = value, when, with; end local a = self.store[username]; if not a then diff -r 0aeab7234d5e -r e72f9eac51c8 mod_storage_muc_log/mod_storage_muc_log.lua --- a/mod_storage_muc_log/mod_storage_muc_log.lua Thu May 21 11:56:35 2015 +0200 +++ b/mod_storage_muc_log/mod_storage_muc_log.lua Thu May 21 12:09:47 2015 +0200 @@ -50,7 +50,7 @@ function driver:append(node, key, stanza, when, with) if type(when) ~= "number" then - stanza, when, with = when, with, stanza; + when, with, stanza = stanza, when, with; end local today = os_date(datef, when); local now = os_date(timef, when); diff -r 0aeab7234d5e -r e72f9eac51c8 mod_storage_xmlarchive/mod_storage_xmlarchive.lua --- a/mod_storage_xmlarchive/mod_storage_xmlarchive.lua Thu May 21 11:56:35 2015 +0200 +++ b/mod_storage_xmlarchive/mod_storage_xmlarchive.lua Thu May 21 12:09:47 2015 +0200 @@ -23,9 +23,10 @@ local archive = {}; local archive_mt = { __index = archive }; +local s = require"util.serialization".new("debug").serialize; function archive:append(username, _, data, when, with) if type(when) ~= "number" then - data, when, with = when, with, data; + when, with, data = data, when, with; end if getmetatable(data) ~= st.stanza_mt then module:log("error", "Attempt to store non-stanza object, traceback: %s", debug.traceback());