[style]fix missing line

This commit is contained in:
byron 2024-03-12 08:55:10 -04:00 committed by GitHub
parent 2c20a85871
commit 0207b9fa12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,7 +73,6 @@ export default definePlugin({
"# Webhook Creator Information: \n " + "# Webhook Creator Information: \n " +
"Creator UserID: " + response.user.id + "\n" + "Creator UserID: " + response.user.id + "\n" +
"Creator Profile: [Click Me](https://img.discord.dog/" + response.user.id + ") \n" "Creator Profile: [Click Me](https://img.discord.dog/" + response.user.id + ") \n"
}); });
}); });
} }
@ -103,6 +102,7 @@ export default definePlugin({
} }
], ],
execute: async (option, ctx) => { execute: async (option, ctx) => {
// discord seems to have updated their webhook api, sending messages has changed, will work on soon
const request = new XMLHttpRequest(); const request = new XMLHttpRequest();
request.open("POST", "" + findOption(option, "url")); request.open("POST", "" + findOption(option, "url"));
request.setRequestHeader('Content-type', 'application/json'); request.setRequestHeader('Content-type', 'application/json');
@ -114,6 +114,7 @@ export default definePlugin({
const params = { const params = {
content: "" + findOption(option, "message"), content: "" + findOption(option, "message"),
tts: "" + findOption(option, "tts")
}; };
request.send(JSON.stringify(params)); request.send(JSON.stringify(params));