From 42a4ed04c8649f98cc926598df98e277b4ff75dd Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 28 Apr 2016 22:03:00 +0200 Subject: [PATCH] MUC: Log cases of possible room resynchronisation --- plugins/muc/muc.lib.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index ce6c5784..dde1e13f 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -429,6 +429,14 @@ function room_mt:handle_presence_to_occupant(origin, stanza) is_last_orig_session = iter(ob, iter(ob, last)) == nil; end + -- TODO Handle these cases sensibly + local muc_x = stanza:get_child("x", "http://jabber.org/protocol/muc"); + if orig_occupant == nil and not muc_x then + module:log("debug", "Join without , possibly desynced"); + elseif orig_occupant ~= nil and muc_x then + module:log("debug", "Presence update with , possibly desynced"); + end + local event, event_name = { room = self; origin = origin; -- 2.30.2