Diff

plugins/muc/muc.lib.lua @ 10431:3db8372e203c 0.11

MUC: Keep role across nickname change (fixes #1466)
author Kim Alvefur <zash@zash.se>
date Sat, 23 Nov 2019 01:05:28 +0100
parent 10293:f9301d93de72
child 10434:8f709577fe8e
child 10690:27d15097c235
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua	Sat Nov 16 16:45:33 2019 +0100
+++ b/plugins/muc/muc.lib.lua	Sat Nov 23 01:05:28 2019 +0100
@@ -524,6 +524,9 @@
 			log("debug", "no occupant found for %s; creating new occupant object for %s", dest_jid, real_jid);
 			is_first_dest_session = true;
 			dest_occupant = self:new_occupant(bare_jid, dest_jid);
+			if orig_occupant then
+				dest_occupant.role = orig_occupant.role;
+			end
 		else
 			is_first_dest_session = false;
 		end