diff --git a/index.js b/index.js index c67b21a..7123ca8 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ import { WebhookClient } from "discord.js"; import { summary } from "./api.js"; import { readFileSync } from "fs"; -const config = readFileSync(process.argv[1], "utf-8"); +const config = JSON.parse(readFileSync(process.argv[2], "utf-8")); console.log(config); const webhook = new WebhookClient({ url: config.webhook });