mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_memory: Generate ID using standard util (fixes #1326)
The previous method relied on tostring(table) returning the pointer address, which might not be portable.
This commit is contained in:
parent
3b8e8f6a45
commit
7241f86668
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@ local array = require "util.array";
|
|||
local envload = require "util.envload".envload;
|
||||
local st = require "util.stanza";
|
||||
local is_stanza = st.is_stanza or function (s) return getmetatable(s) == st.stanza_mt end
|
||||
local new_id = require "util.id".medium;
|
||||
|
||||
local auto_purge_enabled = module:get_option_boolean("storage_memory_temporary", false);
|
||||
local auto_purge_stores = module:get_option_set("storage_memory_temporary_stores", {});
|
||||
|
@ -56,7 +57,7 @@ function archive_store:append(username, key, value, when, with)
|
|||
end
|
||||
local v = { key = key, when = when, with = with, value = value };
|
||||
if not key then
|
||||
key = tostring(a):match"%x+$"..tostring(v):match"%x+$";
|
||||
key = new_id();
|
||||
v.key = key;
|
||||
end
|
||||
if a[key] then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue