Disconnecting and not reconnecting
See original GitHub issueI’m getting that error in all of sudden while it’s working fine.
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR Caught exception: TypeError: Cannot read property 'guild' of undefined
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR TypeError: Cannot read property 'guild' of undefined
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at ChannelManager.remove (/home/vcap/deps/0/node_modules/discord.js/src/managers/ChannelManager.js:44:17)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at GuildDeleteAction.client.actions.GuildDelete.handle (/home/vcap/deps/0/node_modules/discord.js-light/actions.js:126:15)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at Object.PacketHandlers.GUILD_DELETE (/home/vcap/deps/0/node_modules/discord.js-light/handlers.js:106:47)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at WebSocketManager.client.ws.handlePacket (/home/vcap/deps/0/node_modules/discord.js-light/actions.js:38:28)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at WebSocketShard.onPacket (/home/vcap/deps/0/node_modules/discord.js/src/client/websocket/WebSocketShard.js:444:22)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at WebSocketShard.onMessage (/home/vcap/deps/0/node_modules/discord.js/src/client/websocket/WebSocketShard.js:301:10)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at WebSocket.onMessage (/home/vcap/deps/0/node_modules/ws/lib/event-target.js:132:16)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at WebSocket.emit (node:events:378:20)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at Receiver.receiverOnMessage (/home/vcap/deps/0/node_modules/ws/lib/websocket.js:825:20)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at Receiver.emit (node:events:378:20)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at Receiver.dataMessage (/home/vcap/deps/0/node_modules/ws/lib/receiver.js:428:14)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at Receiver.getData (/home/vcap/deps/0/node_modules/ws/lib/receiver.js:367:17)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at Receiver.startLoop (/home/vcap/deps/0/node_modules/ws/lib/receiver.js:143:22)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at Receiver._write (/home/vcap/deps/0/node_modules/ws/lib/receiver.js:78:10)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at writeOrBuffer (node:internal/streams/writable:400:12)
2021-02-09T16:45:54.69+0300 [APP/PROC/WEB/0] ERR at _write (node:internal/streams/writable:341:10)
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Debug log: [WS => Shard 0] [HeartbeatTimer] Didn't receive a heartbeat ack last time, assuming
zombie connection. Destroying and reconnecting.
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Status : READY
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Sequence : 66582
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Connection State: OPEN
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Debug log: [WS => Shard 0] [DESTROY]
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Close Code : 4009
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Reset : true
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Emit DESTROYED: true
2021-02-09T16:46:53.80+0300 [APP/PROC/WEB/0] OUT Debug log: [WS => Shard 0] Clearing the heartbeat interval.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
How to Fix a USB Device That Keeps Disconnecting ...
1. Quick Fixes for the "USB Keeps Disconnecting and Reconnecting" Error · Reboot your PC immediately when you encounter this issue. · Plug...
Read more >5 Reasons Why Your Internet Keeps Disconnecting—and ...
Your randomly disconnecting internet could indeed be caused by outages from your ISP. The easiest way to find out is simply calling your...
Read more >[SOLVED] USB Keeps Disconnecting and Reconnecting ...
USB keeps disconnecting and reconnecting issue is really annoying especially when you need to use the USB port immediately.
Read more >[SOLVED] Internet Randomly Disconnects - Why and How to Fix
There are multiple reasons why your Internet connection randomly disconnects. When it comes to connecting to the Internet via WiFi, here are ...
Read more >Wifi disconnects and doesn't automatically reconnect
Open Settings. Click on Network & Internet. Click on Status. Under the "Change your network settings" section, click the Network reset option.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This happens if
client.channels
andguild.channels
go out of sync, which should never happen by itself, but can happen if the user manually removes a channel from one but forgets to remove it from the other.discord.js master has a fix for this, but they did not backport it to v12, i guess i can backport it myself later today
Thanks, I’ve updated now. I will edit the post tomorrow with the result.
EDIT: I didn’t get any error seems to be fixed, thanks.