Dont show MUC subject on rejoin
- We only show it, if it changed
This commit is contained in:
parent
e8c5ad64a7
commit
1e933c2681
|
@ -1535,6 +1535,9 @@ class GroupchatControl(ChatControlBase):
|
|||
return
|
||||
if event.jid != self.room_jid:
|
||||
return
|
||||
if self.subject == event.subject:
|
||||
# Probably a rejoin, we already showed that subject
|
||||
return
|
||||
self.set_subject(event.subject)
|
||||
text = _('%(nick)s has set the subject to %(subject)s') % {
|
||||
'nick': event.nickname, 'subject': event.subject}
|
||||
|
|
Loading…
Reference in New Issue