Fix opening empty channel when url has trailing slash
This commit is contained in:
parent
806c75f051
commit
50219a63ad
|
@ -3253,7 +3253,7 @@ urlserv:
|
|||
co++;
|
||||
if (*co == '#')
|
||||
*channel = co+1;
|
||||
else
|
||||
else if (*co != '\0')
|
||||
*channel = co;
|
||||
|
||||
/* check for key - mirc style */
|
||||
|
|
Loading…
Reference in New Issue