1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 04:31:56 +00:00
musix-oss/struct/funcs/ffmpeg.js
2020-02-10 21:08:46 +02:00

7 lines
254 B
JavaScript

module.exports = async function (client) {
try {
await client.channels.get(client.configs.secondary_test_channel).join()
} catch (error) {
client.channels.get(client.config.debug_channel).send("Error detected: " + error);
}
};