mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
939e49685c
commit
125249a322
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue