mod_bookmarks: Fix typos in stanza error messages [codespell]

This commit is contained in:
Kim Alvefur 2022-02-04 16:39:35 +01:00
parent 0bff4f57cc
commit b44f2592ea

View file

@ -88,7 +88,7 @@ local function on_retrieve_legacy_pep(event)
local ok, ret = service:get_items(namespace, session.full_jid); local ok, ret = service:get_items(namespace, session.full_jid);
if not ok then if not ok then
module:log("error", "Failed to retrieve PEP bookmarks of %s: %s", jid, ret); module:log("error", "Failed to retrieve PEP bookmarks of %s: %s", jid, ret);
session.send(st.error_reply(stanza, "cancel", ret, "Failed to retrive bookmarks from PEP")); session.send(st.error_reply(stanza, "cancel", ret, "Failed to retrieve bookmarks from PEP"));
return true; return true;
end end
@ -127,7 +127,7 @@ local function on_retrieve_private_xml(event)
session.send(st.reply(stanza):add_child(query)); session.send(st.reply(stanza):add_child(query));
else else
module:log("error", "Failed to retrieve PEP bookmarks of %s: %s", jid, ret); module:log("error", "Failed to retrieve PEP bookmarks of %s: %s", jid, ret);
session.send(st.error_reply(stanza, "cancel", ret, "Failed to retrive bookmarks from PEP")); session.send(st.error_reply(stanza, "cancel", ret, "Failed to retrieve bookmarks from PEP"));
end end
return true; return true;
end end