mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
9 lines
345 B
JavaScript
9 lines
345 B
JavaScript
module.exports = async function (client) {
|
|
try {
|
|
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);
|
|
}
|
|
}; |