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

Fix file extension in URL

This commit is contained in:
AnxietyisReal 2024-01-02 03:31:07 +11:00
parent b1b0c3692e
commit f0b7cb2812

View File

@ -52,7 +52,7 @@ export default class Academy {
]}), ]}),
update: async()=>{ update: async()=>{
if (!client.config.whitelist.includes(interaction.user.id)) return MessageTool.youNeedRole(interaction, 'bottech'); if (!client.config.whitelist.includes(interaction.user.id)) return MessageTool.youNeedRole(interaction, 'bottech');
const articles = await Undici.fetch('https://raw.githubusercontent.com/AnxietyisReal/Daggerbot-TS/master/src/articles.yml').then(x=>x.text()); const articles = await Undici.fetch('https://raw.githubusercontent.com/AnxietyisReal/Daggerbot-TS/master/src/articles.yaml').then(x=>x.text());
writeFileSync('src/articles.yml', articles, 'utf8'); writeFileSync('src/articles.yml', articles, 'utf8');
await interaction.reply({embeds: [new client.embed() await interaction.reply({embeds: [new client.embed()
.setColor(client.config.embedColorGreen) .setColor(client.config.embedColorGreen)