# HG changeset patch # User Matthew Wild # Date 1642428765 0 # Node ID 9965d7d126c7f441c867600a62d866e0aeccd5dc # Parent a6d2b536c41a936fd06b8dfc038ec56d69e088de mod_storage_xep0227: Fix traceback during iteration of driver stores :include(other_set), :add(item) diff -r a6d2b536c41a -r 9965d7d126c7 plugins/mod_storage_xep0227.lua --- a/plugins/mod_storage_xep0227.lua Mon Jan 17 14:11:45 2022 +0000 +++ b/plugins/mod_storage_xep0227.lua Mon Jan 17 14:12:45 2022 +0000 @@ -694,7 +694,7 @@ if handler_funcs._stores then stores:include(handler_funcs._stores(self, user_xml)); else - stores:include(handler_name); + stores:add(handler_name); end end return stores;