diff options
| author | 2018-09-04 07:01:59 +0100 | |
|---|---|---|
| committer | 2018-09-04 07:01:59 +0100 | |
| commit | 3ca0230733595cb962ca783586e4ce73a085c90b (patch) | |
| tree | 2da391bb59a4cb19df31cc3af36eb69833d7e3ee /IRCLineHandler.py | |
| parent | Nope, revert echo-message support. a certain network only offers it in channel, (diff) | |
| signature | ||
Fix referencing account tag for ACCOUNT in IRCLineHandler
Diffstat (limited to 'IRCLineHandler.py')
| -rw-r--r-- | IRCLineHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py index e1d32bec..c2a701c8 100644 --- a/IRCLineHandler.py +++ b/IRCLineHandler.py @@ -456,7 +456,7 @@ class LineHandler(object): if not event["args"][0] == "*": self.events.on("received.account.login").call(user=user, - server=event["server"], account=account) + server=event["server"], account=event["tags"]["account"]) else: self.events.on("received.account.logout").call(user=user, server=event["server"]) |
