allow some more characters in the channel name

This commit is contained in:
Hiltjo Posthuma 2017-07-09 12:28:08 +02:00
parent 704ab925e9
commit bb1e5569d0
1 changed files with 1 additions and 1 deletions

2
ii.c
View File

@ -141,7 +141,7 @@ channel_normalize_path(char *s)
for (; *s; s++) {
if (isalpha(*s))
*s = tolower(*s);
else if (!isdigit(*s) && !strchr(".#&", *s))
else if (!isdigit(*s) && !strchr(".#&+!-", *s))
*s = '_';
}
}