1
0
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:
Sebastien Helleu
2007-05-09 11:00:11 +00:00
parent 860e9a08f3
commit 054abdff85
26 changed files with 2290 additions and 1846 deletions
+2 -4
View File
@@ -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] == '!'))
{