irtelegramd: fix retrieving nick and channel from chat action
patch 74af34e380c2469adf7752e1a16b875110f5b9cf
Author: Peter Bui <pbui@bx612.space>
Date: Thu Jul 18 14:05:47 CEST 2019
* irtelegramd: fix retrieving nick and channel from chat action
hunk ./irtelegramd.py 349
- irc_channel = self.tid_to_iid[event.to_id]
- irc_nick = self.tid_to_iid[event.user_id]
+ irc_channel = self.tid_to_iid[event.action_message.to_id.channel_id]
+ irc_nick = self.tid_to_iid[event.action_message.from_id]