1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-06-17 01:16:00 +00:00
This commit is contained in:
MatteZ02
2020-03-14 23:17:16 +02:00
parent 9b34e33c36
commit 7c182dee57
4 changed files with 1 additions and 11 deletions

View File

@ -3,6 +3,7 @@ module.exports = async function (client) {
await client.channels.fetch(client.config.secondary_test_channel)
.then(x => x.join());
} catch (error) {
if (error === "TypeError: Cannot read property 'join' of null") return;
client.debug_channel.send(client.messages.errorDetected + error);
}
};