Do not process messages with subject AND thread or body as topic changes (#3452)
This commit is contained in:
parent
4aea2a2e10
commit
0df17b60c3
1 changed files with 2 additions and 0 deletions
|
@ -1312,6 +1312,8 @@ class HandlerCore:
|
|||
"""
|
||||
Triggered when the topic is changed.
|
||||
"""
|
||||
if message['body'] or message['thread']:
|
||||
return
|
||||
nick_from = message['mucnick']
|
||||
room_from = message.get_mucroom()
|
||||
tab = self.core.tabs.by_name_and_class(room_from, tabs.MucTab)
|
||||
|
|
Loading…
Reference in a new issue