mirror of
https://github.com/moparisthebest/Conversations
synced 2025-01-08 12:18:06 -05:00
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 New Issue
Block a user