Skip to content

Commit

Permalink
Update eval.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjamesdev authored Oct 29, 2022
1 parent 9162c4a commit 55399bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commands/developers/eval.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
} catch (err) {
evaled = false;

const { body } = await post("https://bin.tritan.dev/").send(err.toString());
const { body } = await post("https://hastebin.com/documents").send(err.toString());
const embed = new MessageEmbed()
.setAuthor({
name: `${message.client.config.embeds.authorName}`,
Expand Down Expand Up @@ -53,7 +53,7 @@ module.exports = {
output = inspect(output, { depth: 0, maxArrayLength: null });
output = clean(output);
if (output.length < 1000) {
const { body } = await post("https://bin.tritan.dev").send(output);
const { body } = await post("https://hastebin.com/documents").send(output);
const embed = new MessageEmbed()
.setAuthor({
name: `${message.client.config.embeds.authorName}`,
Expand All @@ -66,7 +66,7 @@ module.exports = {
.setFooter(`Requested by ${message.author.username}`, message.author.displayAvatarURL());
msg.edit({ content: null, embeds: [embed] });
} else {
const { body } = await post("https://bin.tritan.dev").send(output);
const { body } = await post("https://hastebin.com/documents").send(output);
const embed = new MessageEmbed()
.setAuthor({
name: `${message.client.config.embeds.authorName}`,
Expand Down

0 comments on commit 55399bf

Please sign in to comment.