1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 10:51:56 +00:00
musix-oss/struct/funcs/ffmpeg.js

8 lines
282 B
JavaScript
Raw Normal View History

2020-02-05 20:02:53 +00:00
module.exports = async function (client) {
try {
2020-02-13 03:24:30 +00:00
await client.channels.fetch(client.config.secondary_test_channel)
.then(x => x.join());
2020-02-05 20:02:53 +00:00
} catch (error) {
client.channels.get(client.config.debug_channel).send("Error detected: " + error);
}
};