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