mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-12 23:30:19 +00:00
8 lines
284 B
JavaScript
8 lines
284 B
JavaScript
module.exports = async function (client) {
|
|
try {
|
|
await client.channels.fetch(client.config.secondary_test_channel)
|
|
.then(x => x.join());
|
|
} catch (error) {
|
|
client.channels.fetch(client.config.debug_channel).send("Error detected: " + error);
|
|
}
|
|
}; |