Merge 0.12->trunk

This commit is contained in:
Matthew Wild 2024-11-08 10:31:25 +00:00
commit ef342f9734

View file

@ -167,10 +167,15 @@ local function publish_to_pep(jid, bookmarks, synchronise)
if synchronise then if synchronise then
-- If we set zero legacy bookmarks, purge the bookmarks 2 node. -- If we set zero legacy bookmarks, purge the bookmarks 2 node.
module:log("debug", "No bookmark in the set, purging instead."); module:log("debug", "No bookmark in the set, purging instead.");
return service:purge(namespace, jid, true); local ok, err = service:purge(namespace, jid, true);
else -- It's okay if no node exists when purging, user has
return true; -- no bookmarks anyway.
if not ok and err ~= "item-not-found" then
module:log("error", "Failed to clear items from bookmarks 2 node: %s", err);
return ok, err;
end
end end
return true;
end end
-- Retrieve the current bookmarks2. -- Retrieve the current bookmarks2.
@ -309,7 +314,7 @@ local function on_publish_legacy_pep(event)
local ok, err = publish_to_pep(session.full_jid, bookmarks, true); local ok, err = publish_to_pep(session.full_jid, bookmarks, true);
if not ok then if not ok then
module:log("error", "Failed to publish to PEP bookmarks for %s@%s: %s", session.username, session.host, err); module:log("error", "Failed to sync legacy bookmarks to PEP for %s@%s: %s", session.username, session.host, err);
session.send(st.error_reply(stanza, "cancel", "internal-server-error", "Failed to store bookmarks to PEP")); session.send(st.error_reply(stanza, "cancel", "internal-server-error", "Failed to store bookmarks to PEP"));
return true; return true;
end end
@ -335,7 +340,7 @@ local function on_publish_private_xml(event)
local ok, err = publish_to_pep(session.full_jid, bookmarks, true); local ok, err = publish_to_pep(session.full_jid, bookmarks, true);
if not ok then if not ok then
module:log("error", "Failed to publish to PEP bookmarks for %s@%s: %s", session.username, session.host, err); module:log("error", "Failed to sync private XML bookmarks to PEP for %s@%s: %s", session.username, session.host, err);
session.send(st.error_reply(stanza, "cancel", "internal-server-error", "Failed to store bookmarks to PEP")); session.send(st.error_reply(stanza, "cancel", "internal-server-error", "Failed to store bookmarks to PEP"));
return true; return true;
end end