1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-02 22:43:13 +02:00

Actually test and fix the websocket cutoff bug from

7a43448674
This commit is contained in:
Bram Matthys
2024-09-25 09:45:28 +02:00
parent 918347af9e
commit efbcf1f3b6
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -67,8 +67,8 @@ in progress and may not always be a stable version.
(which was released on June 18 2024 and shipped with UnrealIRCd 6.1.7
to be used as a fallback for systems which don't have the c-ares
library installed).
* Websockets of type 'text' had incoming IRC messages cut off too early
when message tags were in use. Type 'binary' was unaffected.
* Websockets of type 'text' had IRC messages from server to client cut off
too early when message tags were in use. Type 'binary' was unaffected.
* The [require authentication { }](https://www.unrealircd.org/docs/Require_authentication_block)
was broken in 6.1.7.*.
* [JSON-RPC](https://www.unrealircd.org/docs/JSON-RPC) call `spamfilter.get`
+1 -1
View File
@@ -220,7 +220,7 @@ char *unrl_utf8_make_valid(const char *str, char *outputbuf, size_t outputbuflen
p++;
if (strlen(p) > 510)
{
outputbuf[510] = '\0';
p[510] = '\0';
fix_line = 1;
}
}