don't trim bodies

This commit is contained in:
iNPUTmice 2015-01-19 12:15:27 +01:00
parent c5d087ad55
commit 1e607d7b1b
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ public class Message extends AbstractEntity {
if (this.mergeable(next)) { if (this.mergeable(next)) {
return getBody() + '\n' + next.getMergedBody(); return getBody() + '\n' + next.getMergedBody();
} }
return body.trim(); return getBody();
} }
public boolean hasMeCommand() { public boolean hasMeCommand() {