diff options
author | Georg Lukas <georg@op-co.de> | 2020-09-15 12:49:29 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2020-09-15 15:07:02 +0200 |
commit | 6224f650d3448301313671d4466a3f3bd67e73e0 (patch) | |
tree | 1f3e3131721409389b75810628ccc9c7349d2699 | |
parent | 5ff321c2295a422112c0af995ae8fb04136d1c23 (diff) | |
download | poezio-6224f650d3448301313671d4466a3f3bd67e73e0.tar.gz poezio-6224f650d3448301313671d4466a3f3bd67e73e0.tar.bz2 poezio-6224f650d3448301313671d4466a3f3bd67e73e0.tar.xz poezio-6224f650d3448301313671d4466a3f3bd67e73e0.zip |
Disco#info barejid instead of domain on sent carbons
This is the counter-part to 5e404377d4eb1b80b81be91d75e12300c40b354c for
"sent" carbons.
Signed-off-by: Georg Lukas <georg@op-co.de>
-rw-r--r-- | poezio/core/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py index da38c8e4..19394e7d 100644 --- a/poezio/core/handlers.py +++ b/poezio/core/handlers.py @@ -204,7 +204,7 @@ class HandlerCore: if is_muc_pm is None: fixes.has_identity( self.core.xmpp, - sent['to'].server, + sent['to'].bare, identity='conference', on_true=functools.partial(groupchat_private_message, sent), on_false=functools.partial(send_message, sent)) |