Fix opening empty channel when url has trailing slash

This commit is contained in:
TingPing 2013-07-02 12:19:47 -04:00
parent 806c75f051
commit 50219a63ad
1 changed files with 1 additions and 1 deletions

View File

@ -3253,7 +3253,7 @@ urlserv:
co++;
if (*co == '#')
*channel = co+1;
else
else if (*co != '\0')
*channel = co;
/* check for key - mirc style */