# HG changeset patch # User Kim Alvefur # Date 1603635614 -3600 # Node ID 15fe9f0bb48331246d37c72ddc876719eb6fb89d # Parent 409ce7686c112f1b4b95fbbf8cca81e3e298fe08 mod_pubsub: Don't set store as metatable 'archive' is not a metatable here, so this has no effect. Remove since apparently nothing depends on this. diff -r 409ce7686c11 -r 15fe9f0bb483 plugins/mod_pubsub/pubsub.lib.lua --- a/plugins/mod_pubsub/pubsub.lib.lua Wed Oct 21 10:40:11 2020 +0100 +++ b/plugins/mod_pubsub/pubsub.lib.lua Sun Oct 25 15:20:14 2020 +0100 @@ -872,7 +872,7 @@ return item.attr.id, item; end end - return setmetatable(get_set, archive); + return get_set; end _M.archive_itemstore = archive_itemstore;