gateway.websocket: add placeholder handler for opcode 23

This commit is contained in:
Luna 2019-09-29 22:53:07 -03:00
parent eb8c7ba82f
commit 9c2e04a17c
2 changed files with 6 additions and 0 deletions

View File

@ -44,3 +44,5 @@ class OP:
# request for lazy guilds
LAZY_REQUEST = 14
UNKNOWN_1 = 23

View File

@ -961,6 +961,10 @@ class GatewayWebsocket:
self.state.session_id, ranges
)
async def _handle_23(self, payload):
# TODO reverse-engineer opcode 23, sent by client
pass
async def _process_message(self, payload):
"""Process a single message coming in from the client."""
try: