ibid replies to itself on XMPP chat if addressed=false
Bug #1119353 reported by
fabulouspanda
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Ibid |
New
|
Undecided
|
Unassigned |
Bug Description
Setting Addressed to False for processor causes ibid to reply to anything it posts in XMPP MUC (not in private chats)
I believe this is a failure to correctly handle the JID in MUC
I fixed this for my instance of ibid by editing the if message['type'] == 'groupchat' section of jabber.py as such:
if event.sender['id'] == <email address hidden>/mybot':
return
which suggests that self.parent.nick isn't covering JIDs for MUCs as per the previous line
if event.sender['id'] == self.parent.nick:
return
To post a comment you must log in.