1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-13 06:34:47 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Sébastien Helleu 9df8044cae irc: fix send of split messages when server option "anti_flood" set to 0 (issue #2172) 2024-08-15 20:23:12 +02:00
Sébastien Helleu 679a87c571 Version 4.3.7-dev 2024-08-15 20:21:01 +02:00
3 changed files with 17 additions and 3 deletions
+8
View File
@@ -8,6 +8,14 @@
:see-release-notes: If you are upgrading: please see release notes.
:breaking: pass:quotes[*[breaking]*]
[[v4.3.7]]
== Version 4.3.7 (under dev)
[[v4.3.7_fixed]]
=== Fixed
* irc: fix send of split messages when server option "anti_flood" set to 0 (issue #2172)
[[v4.3.6]]
== Version 4.3.6 (2024-08-15)
+8 -2
View File
@@ -2988,8 +2988,14 @@ irc_server_outqueue_send (struct t_irc_server *server)
if (!server->outqueue[priority])
continue;
irc_server_outqueue_send_one_msg (server, server->outqueue[priority]);
irc_server_outqueue_free (server, priority, server->outqueue[priority]);
/* send all messages with anti_flood == 0, or just one */
while (server->outqueue[priority])
{
irc_server_outqueue_send_one_msg (server, server->outqueue[priority]);
irc_server_outqueue_free (server, priority, server->outqueue[priority]);
if (anti_flood > 0)
break;
}
/*
* continue to send for immediate priority (= 0),
+1 -1
View File
@@ -40,7 +40,7 @@
#
weechat_stable="4.3.6"
weechat_devel="4.3.6"
weechat_devel="4.3.7-dev"
stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)
stable_minor=$(echo "${weechat_stable}" | cut -d"." -f2)