Fix opening empty channel when url has trailing slash
This commit is contained in:
parent
806c75f051
commit
50219a63ad
1 changed files with 1 additions and 1 deletions
|
@ -3253,7 +3253,7 @@ urlserv:
|
|||
co++;
|
||||
if (*co == '#')
|
||||
*channel = co+1;
|
||||
else
|
||||
else if (*co != '\0')
|
||||
*channel = co;
|
||||
|
||||
/* check for key - mirc style */
|
||||
|
|
Loading…
Add table
Reference in a new issue