mod_bookmarks: Skip migration of legacy data when empty

Should save some cycles and not log the debug message on every login.
This commit is contained in:
Kim Alvefur 2022-01-10 00:13:17 +01:00
parent 939e49685c
commit 125249a322

View file

@ -335,7 +335,7 @@ local function migrate_legacy_bookmarks(event)
local jid = username.."@"..session.host;
local ok, ret = service:get_items(namespace_legacy, session.full_jid);
if ok then
if ok and ret[1] then
module:log("debug", "Legacy PEP bookmarks found for %s, migrating.", jid);
local failed = false;
for _, item_id in ipairs(ret) do