diff --git a/qortal-ui-plugins/plugins/core/components/ChatTextEditor.js b/qortal-ui-plugins/plugins/core/components/ChatTextEditor.js
index cc371fa4..9d1efcdc 100644
--- a/qortal-ui-plugins/plugins/core/components/ChatTextEditor.js
+++ b/qortal-ui-plugins/plugins/core/components/ChatTextEditor.js
@@ -507,8 +507,8 @@ class ChatTextEditor extends LitElement {
${this.chatMessageSize >= 750 ?
html`
-
- ${`Your message size is of ${this.chatMessageSize} bytes out of a maximum of 1000`}
+
+ ${`Your message size is of ${this.chatMessageSize} bytes out of a maximum of 4000`}
` :
@@ -605,7 +605,7 @@ class ChatTextEditor extends LitElement {
sendMessageFunc(props) {
if(this.editor.isEmpty) return
this.getMessageSize(this.editor.getJSON())
- if (this.chatMessageSize > 1000 ) {
+ if (this.chatMessageSize > 4000 ) {
parentEpml.request('showSnackBar', get("chatpage.cchange29"));
return;
}