mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Match LS instead of checking the first letter only
This commit is contained in:
parent
6c45ab0493
commit
f3a5355648
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ static void event_cap (IRC_SERVER_REC *server, char *args, char *nick, char *add
|
|||
|
||||
/* Multiline responses have an additional parameter and we have to do
|
||||
* this stupid dance to parse them */
|
||||
if (evt[0] == 'L' && !strcmp(star, "*")) {
|
||||
if (!g_ascii_strcasecmp(evt, "LS") && !strcmp(star, "*")) {
|
||||
multiline = TRUE;
|
||||
}
|
||||
/* This branch covers the '*' parameter isn't present, adjust the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue