From 58615ae1f928adfcb7c1317c3476d0be1d1447f8 Mon Sep 17 00:00:00 2001 From: Florent Date: Mon, 19 Jan 2026 08:48:35 -0400 Subject: [PATCH] fixed doc for send_chan_msg --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 25b2c5d..57b3613 100644 --- a/README.md +++ b/README.md @@ -553,7 +553,7 @@ All commands are async methods that return `Event` objects. Commands are organiz | `get_msg(timeout=None)` | `timeout: float` | `CONTACT_MSG_RECV/CHANNEL_MSG_RECV/NO_MORE_MSGS` | Get next pending message | | `send_msg(dst, msg, timestamp=None)` | `dst: contact/str/bytes, msg: str, timestamp: int` | `MSG_SENT` | Send direct message | | `send_cmd(dst, cmd, timestamp=None)` | `dst: contact/str/bytes, cmd: str, timestamp: int` | `MSG_SENT` | Send command message | -| `send_chan_msg(chan, msg, timestamp=None)` | `chan: int, msg: str, timestamp: int` | `MSG_SENT` | Send channel message | +| `send_chan_msg(chan, msg, timestamp=None)` | `chan: int, msg: str, timestamp: int` | `MSG_OK` | Send channel message | | **Authentication** |||| | `send_login(dst, pwd)` | `dst: contact/str/bytes, pwd: str` | `MSG_SENT` | Send login request | | `send_logout(dst)` | `dst: contact/str/bytes` | `MSG_SENT` | Send logout request |