aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_mam
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-01-23 19:32:07 +0100
committerKim Alvefur <zash@zash.se>2017-01-23 19:32:07 +0100
commitffde63fe687f5ffecf5fdec28358d1774a8a7169 (patch)
tree68949ca278eb5856a62465a8885721ea3c806b12 /plugins/mod_mam
parent4b829743e65d70698af2a368414664222fbf6ae6 (diff)
downloadprosody-ffde63fe687f5ffecf5fdec28358d1774a8a7169.tar.gz
prosody-ffde63fe687f5ffecf5fdec28358d1774a8a7169.zip
mod_mam: Use correct local name for util.jid.prepped_split
Diffstat (limited to 'plugins/mod_mam')
-rw-r--r--plugins/mod_mam/mod_mam.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua
index 69977813..f6ca52c0 100644
--- a/plugins/mod_mam/mod_mam.lua
+++ b/plugins/mod_mam/mod_mam.lua
@@ -249,7 +249,7 @@ local function message_handler(event, c2s)
-- Filter out <stanza-id> 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