# HG changeset patch # User Kim Alvefur # Date 1509228465 -7200 # Node ID 6af950b834a60271e86c9efff35f2fc1e521ecf4 # Parent 3a72378c7479a3e738ce7e55e29cb58157514a01 rostermanager: Log warning if removal self-contact failed diff -r 3a72378c7479 -r 6af950b834a6 core/rostermanager.lua --- a/core/rostermanager.lua Sun Oct 29 00:07:18 2017 +0200 +++ b/core/rostermanager.lua Sun Oct 29 00:07:45 2017 +0200 @@ -116,7 +116,9 @@ if roster[jid] then roster[jid] = nil; log("debug", "Roster for %s had a self-contact, removing", jid); - save_roster(username, host, roster, jid); + if not save_roster(username, host, roster, jid) then + log("warn", "Could not remove self-contact from roster for %s", jid); + end end if not err then hosts[host].events.fire_event("roster-load", { username = username, host = host, roster = roster });