summaryrefslogtreecommitdiff
path: root/poezio/core
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2020-01-12 13:45:44 +0100
committerMaxime “pep” Buquet <pep@bouah.net>2020-01-12 23:23:17 +0100
commit5e404377d4eb1b80b81be91d75e12300c40b354c (patch)
treee000a455706e21e93bab81ea6a81e310419920bb /poezio/core
parentd8f7a6127109c437ae621cfa6e78944ad37fb8fd (diff)
downloadpoezio-5e404377d4eb1b80b81be91d75e12300c40b354c.tar.gz
poezio-5e404377d4eb1b80b81be91d75e12300c40b354c.tar.bz2
poezio-5e404377d4eb1b80b81be91d75e12300c40b354c.tar.xz
poezio-5e404377d4eb1b80b81be91d75e12300c40b354c.zip
Disco#info barejid instead of domain only on carbons
There is no apparent reason why a disco#info should be done on the domain Jid rather than the bare Jid. MUCs advertize their MUC-y-ness on the bare Jid. This will also fix cases like chat@dino.im which is a MUC component itself (whereas dino.im is a user host), and biboumi components that serves a mic of MUCs and (IRC) users. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'poezio/core')
-rw-r--r--poezio/core/handlers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py
index 158dff17..cfdeb271 100644
--- a/poezio/core/handlers.py
+++ b/poezio/core/handlers.py
@@ -175,7 +175,7 @@ class HandlerCore:
if is_muc_pm is None:
fixes.has_identity(
self.core.xmpp,
- recv['from'].server,
+ recv['from'].bare,
identity='conference',
on_true=functools.partial(ignore_message, recv),
on_false=functools.partial(receive_message, recv))