mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_memory: Fix overwriting old keys
Test fixed is: spec/core_storagemanager_spec.lua:309: Expected objects to be equal.
This commit is contained in:
parent
03151ec6d5
commit
534dae7164
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,6 @@ function archive_store:append(username, key, value, when, with)
|
||||||
a = {};
|
a = {};
|
||||||
self.store[username or NULL] = a;
|
self.store[username or NULL] = a;
|
||||||
end
|
end
|
||||||
local i = #a+1;
|
|
||||||
local v = { key = key, when = when, with = with, value = value };
|
local v = { key = key, when = when, with = with, value = value };
|
||||||
if not key then
|
if not key then
|
||||||
key = tostring(a):match"%x+$"..tostring(v):match"%x+$";
|
key = tostring(a):match"%x+$"..tostring(v):match"%x+$";
|
||||||
|
@ -62,6 +61,7 @@ function archive_store:append(username, key, value, when, with)
|
||||||
if a[key] then
|
if a[key] then
|
||||||
table.remove(a, a[key]);
|
table.remove(a, a[key]);
|
||||||
end
|
end
|
||||||
|
local i = #a+1;
|
||||||
a[i] = v;
|
a[i] = v;
|
||||||
a[key] = i;
|
a[key] = i;
|
||||||
return key;
|
return key;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue