We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e681d commit 13e01a2Copy full SHA for 13e01a2
src/main/java/com/annimon/similarimagesbot/BotHandler.java
@@ -147,9 +147,9 @@ private void sendReport(List<SimilarImagesInfo> infos) {
147
// /compare command
148
text += info.getResults().stream()
149
.map(ImageResult::getPost)
150
- .map(p -> String.format("/compare%sm%dx%d",
+ .map(p -> String.format("%n/compare%sm%dx%d",
151
channelId, post.getMessageId(), p.getMessageId()))
152
- .collect(Collectors.joining("\n"));
+ .collect(Collectors.joining());
153
// /del command
154
text += String.format("%n/del%sm%d", channelId, post.getMessageId());
155
return text;
0 commit comments