mirror of
https://github.com/weechat/weechat.git
synced 2026-07-01 15:26:37 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9df8044cae | |||
| 679a87c571 |
@@ -8,6 +8,14 @@
|
|||||||
:see-release-notes: If you are upgrading: please see release notes.
|
:see-release-notes: If you are upgrading: please see release notes.
|
||||||
:breaking: pass:quotes[*[breaking]*]
|
: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]]
|
[[v4.3.6]]
|
||||||
== Version 4.3.6 (2024-08-15)
|
== Version 4.3.6 (2024-08-15)
|
||||||
|
|
||||||
|
|||||||
@@ -2988,8 +2988,14 @@ irc_server_outqueue_send (struct t_irc_server *server)
|
|||||||
if (!server->outqueue[priority])
|
if (!server->outqueue[priority])
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
irc_server_outqueue_send_one_msg (server, server->outqueue[priority]);
|
/* send all messages with anti_flood == 0, or just one */
|
||||||
irc_server_outqueue_free (server, priority, server->outqueue[priority]);
|
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),
|
* continue to send for immediate priority (= 0),
|
||||||
|
|||||||
+1
-1
@@ -40,7 +40,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
weechat_stable="4.3.6"
|
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_major=$(echo "${weechat_stable}" | cut -d"." -f1)
|
||||||
stable_minor=$(echo "${weechat_stable}" | cut -d"." -f2)
|
stable_minor=$(echo "${weechat_stable}" | cut -d"." -f2)
|
||||||
|
|||||||
Reference in New Issue
Block a user