mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Increase max length of popup txt
This commit is contained in:
parent
8dd9069ecb
commit
49815176bb
1 changed files with 2 additions and 2 deletions
|
@ -752,8 +752,8 @@ public abstract class Overlay<T extends Overlay> {
|
|||
}
|
||||
|
||||
protected void setTruncatedMessage() {
|
||||
if (message != null && message.length() > 1500)
|
||||
truncatedMessage = StringUtils.abbreviate(message, 1500);
|
||||
if (message != null && message.length() > 1800)
|
||||
truncatedMessage = StringUtils.abbreviate(message, 1800);
|
||||
else
|
||||
truncatedMessage = message;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue