Halfbroken fixes

This commit is contained in:
Myx
2023-06-28 03:02:41 +02:00
parent 6a001604ab
commit f533e38333
18 changed files with 545 additions and 421 deletions

View File

@@ -1,18 +1,17 @@
const play = require('play-dl');
async function ReAuth() {
play.getFreeClientID().then((clientID) => {
play.setToken({
soundcloud: {
client_id: clientID,
},
});
play.getFreeClientID().then((clientID) => {
play.setToken({
soundcloud : {
client_id : clientID
}
})
console.log(`Soudncloud Client ID: ${clientID}`);
});
console.log('Soudncloud Client ID: ' + clientID);
})
play.authorization();
play.authorization();
}
module.exports.ReAuth = ReAuth;