From 259457ae2f2691ec81a298cef25cb131f16dc714 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 15 May 2015 19:35:51 +0200 Subject: [PATCH] core: Request capability metadata-notify so plugins can use it if they want. --- src/irclib.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/irclib.py b/src/irclib.py index 1c743c058..eafbcf755 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -966,7 +966,8 @@ class Irc(IrcCommandDispatcher): elif self.sasl_username and self.sasl_password: self.sasl = 'plain' - for cap in ('account-notify', 'extended-join', 'multi-prefix'): + for cap in ('account-notify', 'extended-join', 'multi-prefix', + 'metadata-notify'): self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('REQ', cap))) if self.sasl: