don't trim bodies
This commit is contained in:
parent
c5d087ad55
commit
1e607d7b1b
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue