# HG changeset patch # User Kim Alvefur # Date 1485196327 -3600 # Node ID bd5008a7dcbdc49bcde9d4b3b5b94ce7dc5f688e # Parent e429982940fcd7cb23e74a4ae5b7a4b10752214d mod_mam: Use correct local name for util.jid.prepped_split diff -r e429982940fc -r bd5008a7dcbd plugins/mod_mam/mod_mam.lua --- a/plugins/mod_mam/mod_mam.lua Mon Jan 23 19:31:30 2017 +0100 +++ b/plugins/mod_mam/mod_mam.lua Mon Jan 23 19:32:07 2017 +0100 @@ -249,7 +249,7 @@ -- Filter out that claim to be from us stanza:maptags(function (tag) if tag.name == "stanza-id" and tag.attr.xmlns == "urn:xmpp:sid:0" then - local by_user, by_host, res = prepped_split(tag.attr.by); + local by_user, by_host, res = jid_prepped_split(tag.attr.by); if not res and by_host == module.host and by_user == store_user then return nil; end