3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00

ngircd: remove has-ts from protocol capabilities

This commit is contained in:
James Lu 2017-07-06 21:49:51 -07:00
parent b0eb1656a5
commit f29c95152b

View File

@ -27,9 +27,13 @@ class NgIRCdProtocol(IRCS2SProtocol):
# Track whether we've received end-of-burst from the uplink.
self.has_eob = False
self._caps = {}
self._use_builtin_005_handling = True
# ngIRCd has no TS tracking.
self.protocol_caps.discard('has-ts')
### Commands
def post_connect(self):