summaryrefslogtreecommitdiff
path: root/poezio
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2020-05-12 00:10:27 +0200
committerMaxime “pep” Buquet <pep@bouah.net>2020-05-12 00:10:27 +0200
commit17585c6b65849ed24db63fdb240eaefe183577ff (patch)
treed165aae4ff5e77bba071addc2a4ae583a316bcfd /poezio
parent406a10bf15fe46400b658df6bbe7ce2942e6ee00 (diff)
downloadpoezio-17585c6b65849ed24db63fdb240eaefe183577ff.tar.gz
poezio-17585c6b65849ed24db63fdb240eaefe183577ff.tar.bz2
poezio-17585c6b65849ed24db63fdb240eaefe183577ff.tar.xz
poezio-17585c6b65849ed24db63fdb240eaefe183577ff.zip
poezio.core.handlers: Treat MUC Barejid message as info
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'poezio')
-rw-r--r--poezio/core/handlers.py23
1 files changed, 18 insertions, 5 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py
index 3e2a20a0..8ed861af 100644
--- a/poezio/core/handlers.py
+++ b/poezio/core/handlers.py
@@ -778,8 +778,12 @@ class HandlerCore:
replaced = True
except CorrectionError:
log.debug('Unable to correct a message', exc_info=True)
- if not replaced and tab.add_message(
- PMessage(
+
+ if not replaced:
+ # Messages coming from MUC barejid (Server maintenance, IRC mode
+ # changes from biboumi, etc.) are displayed as info messages.
+ if message['from'].resource:
+ ui_msg = PMessage(
txt=body,
time=date,
nickname=nick_from,
@@ -788,9 +792,18 @@ class HandlerCore:
identifier=message['id'],
jid=message['from'],
user=user,
- ),
- typ=1):
- self.core.events.trigger('highlight', message, tab)
+ )
+ typ = 1
+ else:
+ ui_msg = InfoMessage(
+ txt=body,
+ time=date,
+ identifier=message['id'],
+ )
+ typ = 2
+
+ if tab.add_message(ui_msg, typ):
+ self.core.events.trigger('highlight', message, tab)
if message['from'].resource == tab.own_nick:
tab.set_last_sent_message(message, correct=replaced)