mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_bookmarks: Fix typos in stanza error messages [codespell]
This commit is contained in:
parent
0bff4f57cc
commit
b44f2592ea
1 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ local function on_retrieve_legacy_pep(event)
|
|||
local ok, ret = service:get_items(namespace, session.full_jid);
|
||||
if not ok then
|
||||
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;
|
||||
end
|
||||
|
||||
|
@ -127,7 +127,7 @@ local function on_retrieve_private_xml(event)
|
|||
session.send(st.reply(stanza):add_child(query));
|
||||
else
|
||||
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
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue