diff options
| author | 2018-11-09 10:43:05 +0000 | |
|---|---|---|
| committer | 2018-11-09 10:43:05 +0000 | |
| commit | 4bab1aea3094c2fa6cd8ba96a42eda905a933581 (patch) | |
| tree | 134fe7b75e872235a8183d10cee5436375a7be36 /modules/resume.py | |
| parent | Filter out empty items in utils.parse.keyvalue (diff) | |
Add a way to more explicitly denote when a CAP handshake has ended early
Diffstat (limited to 'modules/resume.py')
| -rw-r--r-- | modules/resume.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/resume.py b/modules/resume.py index 21fa83e8..676602a5 100644 --- a/modules/resume.py +++ b/modules/resume.py @@ -17,7 +17,7 @@ class Module(ModuleManager.BaseModule): username, token = self._get_token(event["server"]) if CAP in event["capabilities"] and username and token: event["server"].send("RESUME %s %s" % (username, token)) - return False + event["server"].cap_started = False @utils.hook("received.resume") def on_resume(self, event): |
