From 78d07e9eee8f841059768f1c1480fdda58d986a3 Mon Sep 17 00:00:00 2001 From: Martin Dosch Date: Thu, 28 Mar 2024 18:17:45 +0100 Subject: [PATCH] XEP-0478: Further improve error message. --- xmpp.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xmpp.go b/xmpp.go index 649ac82..d9d1506 100644 --- a/xmpp.go +++ b/xmpp.go @@ -1214,7 +1214,7 @@ func (c *Client) Send(chat Chat) (n int, err error) { stanza := fmt.Sprintf(""+subtext+"%s"+oobtext+thdtext+"\n", xmlEscape(chat.Remote), xmlEscape(chat.Type), cnonce(), xmlEscape(chat.Text)) if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } @@ -1237,7 +1237,7 @@ func (c *Client) SendOOB(chat Chat) (n int, err error) { stanza := fmt.Sprintf(""+oobtext+thdtext+"\n", xmlEscape(chat.Remote), xmlEscape(chat.Type), cnonce()) if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } return fmt.Fprint(c.stanzaWriter, stanza) @@ -1247,7 +1247,7 @@ func (c *Client) SendOOB(chat Chat) (n int, err error) { func (c *Client) SendOrg(org string) (n int, err error) { stanza := fmt.Sprint(org + "\n") if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } return fmt.Fprint(c.stanzaWriter, stanza) @@ -1296,7 +1296,7 @@ func (c *Client) SendPresence(presence Presence) (n int, err error) { stanza := fmt.Sprintf(buf + "") if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } return fmt.Fprint(c.stanzaWriter, stanza) @@ -1313,7 +1313,7 @@ func (c *Client) SendHtml(chat Chat) (n int, err error) { "%s\n", xmlEscape(chat.Remote), xmlEscape(chat.Type), xmlEscape(chat.Text), chat.Text) if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } return fmt.Fprint(c.stanzaWriter, stanza)