diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-03-25 17:46:25 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-03-25 17:46:25 +0200 |
commit | aaad4ca6e5fc81edbf568a1b8424499bb48d4450 (patch) | |
tree | 17106a4ca9b3641d260b58acfe25d5b7cd1f340f /src/plugins/irc/irc-message.c | |
parent | 9dd8cc0d6adb5e74edff591499f990453e4692a8 (diff) | |
download | weechat-aaad4ca6e5fc81edbf568a1b8424499bb48d4450.zip |
irc: update URL with IRCv3.2 message tags specification
Diffstat (limited to 'src/plugins/irc/irc-message.c')
-rw-r--r-- | src/plugins/irc/irc-message.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/irc/irc-message.c b/src/plugins/irc/irc-message.c index da87a6924..471033586 100644 --- a/src/plugins/irc/irc-message.c +++ b/src/plugins/irc/irc-message.c @@ -112,9 +112,9 @@ irc_message_parse (struct t_irc_server *server, const char *message, if (ptr_message[0] == '@') { /* - * read tags (they are optional and enabled only if client enabled - * a server capability, see: - * http://ircv3.atheme.org/specification/message-tags-3.2) + * Read tags: they are optional and enabled only if client enabled + * a server capability. + * See: https://ircv3.github.io/specs/core/message-tags-3.2.html */ pos = strchr (ptr_message, ' '); if (pos) |