diff --git a/application/src/main/java/org/togetherjava/tjbot/commands/help/HelpThreadAutoArchiver.java b/application/src/main/java/org/togetherjava/tjbot/commands/help/HelpThreadAutoArchiver.java index 7185bf20a4..e3d557a549 100644 --- a/application/src/main/java/org/togetherjava/tjbot/commands/help/HelpThreadAutoArchiver.java +++ b/application/src/main/java/org/togetherjava/tjbot/commands/help/HelpThreadAutoArchiver.java @@ -73,12 +73,12 @@ private void autoArchiveForThread(ThreadChannel threadChannel, Instant archiveAf if (shouldBeArchived(threadChannel, archiveAfterMoment)) { logger.debug("Auto archiving help thread {}", threadChannel.getId()); - MessageEmbed embed = new EmbedBuilder().setDescription( - """ - Closed the thread due to inactivity. + MessageEmbed embed = new EmbedBuilder().setDescription(""" + Closed the thread due to inactivity. - If your question was not resolved yet, feel free to create a new thread. \ - But try to improve the quality of your question to make it easier to help you 👍""") + If your question was not resolved yet, feel free to just post a message \ + to reopen it, or create a new thread. But try to improve the quality of \ + your question to make it easier to help you 👍""") .setColor(HelpSystemHelper.AMBIENT_COLOR) .build();