diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-28 22:03:00 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-28 22:03:00 +0200 |
commit | 5ed59e2c3809d44df0741a48cbda7227e821e41e (patch) | |
tree | ade03a52be6497e57966db6227d6c5181198a18e | |
parent | fc96a38dec775b31df1c37aec4ad82aa636c3ff8 (diff) | |
download | prosody-5ed59e2c3809d44df0741a48cbda7227e821e41e.tar.gz prosody-5ed59e2c3809d44df0741a48cbda7227e821e41e.zip |
MUC: Log cases of possible room resynchronisation
-rw-r--r-- | plugins/muc/muc.lib.lua | 8 |
1 files changed, 8 insertions, 0 deletions
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 <x>, possibly desynced"); + elseif orig_occupant ~= nil and muc_x then + module:log("debug", "Presence update with <x>, possibly desynced"); + end + local event, event_name = { room = self; origin = origin; |