We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6376bc8 commit a5e899fCopy full SHA for a5e899f
src/main/java/net/javadiscord/javabot/systems/qotw/submissions/SubmissionManager.java
@@ -78,7 +78,7 @@ public WebhookMessageCreateAction<?> handleSubmission(@NotNull ButtonInteraction
78
thread.sendMessage(member.getAsMention())
79
.setEmbeds(buildSubmissionThreadEmbed(event.getUser(), questionOptional.get(), config))
80
.setComponents(ActionRow.of(Button.danger("qotw-submission:delete", "Delete Submission")))
81
- .queue();
+ .queue(s -> {}, err -> ExceptionLogger.capture(err, getClass().getSimpleName()));
82
} else {
83
thread.sendMessage("Could not retrieve current QOTW Question. Please contact an Administrator if you think that this is a mistake.")
84
.queue();
0 commit comments