1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 16:30:58 -05:00

Move stuff inside the for loop

This commit is contained in:
AnxietyisReal 2023-12-27 11:21:30 +11:00
parent c5101717e5
commit fcfd11431a

View File

@ -9,17 +9,16 @@ export default async(client:TClient)=>{
let Data:any;
const cacheExpiry:number = 7200; // Invalidate cache after sitting in Redis for 2 hours
const YTDB = await client.ytChannels.getChannels();
for (const channel of YTDB) {
let YTChannelID:string;
let YTChannelName:string;
let DiscordChannelID:string;
let DiscordRoleID:string;
const YTDB = await client.ytChannels.getChannels();
for (const channel of YTDB) {
YTChannelID = channel.dataValues.ytchannel;
DiscordChannelID = channel.dataValues.dcchannel;
DiscordRoleID = channel.dataValues.dcrole;
};
try {
await Undici.request(`https://youtube.googleapis.com/youtube/v3/activities?part=snippet&channelId=${YTChannelID}&maxResults=2&key=${(await TSClient()).youtube}`, {
@ -48,3 +47,4 @@ export default async(client:TClient)=>{
});
}
}
};