mirror of https://gitlab.com/litecord/litecord.git
gateway.websocket: add placeholder handler for opcode 23
This commit is contained in:
parent
eb8c7ba82f
commit
9c2e04a17c
|
|
@ -44,3 +44,5 @@ class OP:
|
|||
|
||||
# request for lazy guilds
|
||||
LAZY_REQUEST = 14
|
||||
|
||||
UNKNOWN_1 = 23
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue