diff --git a/src/commands/plugin.ts b/src/commands/plugin.ts index f48114c..24cbd7c 100644 --- a/src/commands/plugin.ts +++ b/src/commands/plugin.ts @@ -50,7 +50,7 @@ export default commandModule({ async execute(ctx, [, options]) { const url = options.getString("plugin", true) as string; const name = ctx.client.cache?.findKey((d) => d.download_url === url); - let data = await fetch(url, { method: "GET" }) + let data = await fetch(url) .then((r) => r.text()) .catch(() => null); if (!data || !name)