mirror of
https://github.com/weechat/weechat.git
synced 2026-06-26 12:56:37 +02:00
Fixed bug with erroneous nickname when connecting to server (bug #19812), fixed display bugs in IRC error messages
This commit is contained in:
@@ -234,11 +234,9 @@ weechat_charset_parse_irc_msg (char *message, char **nick, char **command,
|
||||
pos2++;
|
||||
while (pos2[0] == ' ')
|
||||
pos2++;
|
||||
if (pos2[0] == ':')
|
||||
*pos_args = pos2 + 1;
|
||||
else
|
||||
*pos_args = pos2;
|
||||
if (pos2[0] != ':')
|
||||
{
|
||||
*pos_args = pos2;
|
||||
if ((pos2[0] == '#') || (pos2[0] == '&')
|
||||
|| (pos2[0] == '+') || (pos2[0] == '!'))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user