Skip to content
Snippets Groups Projects
Commit 7aff39d9 authored by Holger Weiss's avatar Holger Weiss
Browse files

Use bare JID when checking MAM message recipient. Fixes #7973

parent d87cfe25
No related branches found
No related tags found
No related merge requests found
......@@ -1103,7 +1103,7 @@ class MessageReceivedEvent(nec.NetworkIncomingEvent, HelperEvent):
msg_ = forwarded.getTag('message')
to_ = msg_.getAttr('to')
if to_:
gajim.get_jid_without_resource(to_)
to_ = gajim.get_jid_without_resource(to_)
else:
to_ = gajim.get_jid_from_account(account)
frm_ = gajim.get_jid_without_resource(msg_.getAttr('from'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment