From c636e064e70771e2951fe206e4193f0c9fd7eee2 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 22 Oct 2017 01:08:30 -0700 Subject: [PATCH] ts6: remove SAVE from required capabs We don't actually send SAVE out to any IRCd, so we don't need to demand that it's supported. Closes #545. --- protocols/ts6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/ts6.py b/protocols/ts6.py index a2e87ab..8586e9a 100644 --- a/protocols/ts6.py +++ b/protocols/ts6.py @@ -35,7 +35,7 @@ class TS6Protocol(TS6BaseProtocol): # ENCAP LOGIN is used on burst for EUID-less servers 'USERMODE': 'MODE', 'LOGIN': 'CLIENT_SERVICES_LOGIN'} - self.required_caps = {'SAVE', 'TB', 'ENCAP', 'QS', 'CHW'} + self.required_caps = {'TB', 'ENCAP', 'QS', 'CHW'} # From ChatIRCd: https://github.com/ChatLounge/ChatIRCd/blob/master/doc/technical/ChatIRCd-extra.txt # Our command handler rewrites ENCAP so that this is the exact same syntax as MODE.