mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
default to hash channels
This commit is contained in:
parent
68823eb6af
commit
891ef5df10
@ -71,7 +71,7 @@ static char *force_channel_name(IRC_SERVER_REC *server, const char *name)
|
|||||||
return g_strdup(name);
|
return g_strdup(name);
|
||||||
|
|
||||||
chantypes = g_hash_table_lookup(server->isupport, "chantypes");
|
chantypes = g_hash_table_lookup(server->isupport, "chantypes");
|
||||||
if (chantypes == NULL || *chantypes == '\0')
|
if (chantypes == NULL || *chantypes == '\0' || strchr(chantypes, '#') != NULL)
|
||||||
chantypes = "#";
|
chantypes = "#";
|
||||||
|
|
||||||
return g_strdup_printf("%c%s", *chantypes, name);
|
return g_strdup_printf("%c%s", *chantypes, name);
|
||||||
|
Loading…
Reference in New Issue
Block a user