Skip to content

Commit

Permalink
Allow ASCII 0xa0 in channels / Fix truncated channel name.
Browse files Browse the repository at this point in the history
  • Loading branch information
syzop committed Sep 10, 2018
1 parent d610dfb commit a4e076c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/channel.c
Expand Up @@ -1048,7 +1048,7 @@ void clean_channelname(char *cn)
* or some such.
* --Wizzu
*/
if (*ch < 33 || *ch == ',' || *ch == ':' || *ch == 160)
if (*ch < 33 || *ch == ',' || *ch == ':')
{
*ch = '\0';
return;
Expand Down

0 comments on commit a4e076c

Please sign in to comment.