mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 17:12:51 +02:00
Merge pull request #12 from ailin-nemui/ticho/singlenet
can do /server add -matrix -network my_matrix_network
This commit is contained in:
commit
7452ec34ad
1 changed files with 3 additions and 1 deletions
|
|
@ -91,7 +91,9 @@ static SERVER_SETUP_REC *create_server_setup(GHashTable *optlist)
|
||||||
if (rec == NULL)
|
if (rec == NULL)
|
||||||
rec = chat_protocol_get_default();
|
rec = chat_protocol_get_default();
|
||||||
else {
|
else {
|
||||||
chatnet = g_hash_table_lookup(optlist, rec->chatnet);
|
chatnet = g_hash_table_lookup(optlist, "network");
|
||||||
|
if (chatnet == NULL && g_hash_table_lookup(optlist, rec->chatnet) != NULL)
|
||||||
|
chatnet = rec->chatnet;
|
||||||
if (chatnet_find(chatnet) == NULL) {
|
if (chatnet_find(chatnet) == NULL) {
|
||||||
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
|
||||||
TXT_UNKNOWN_CHATNET, chatnet);
|
TXT_UNKNOWN_CHATNET, chatnet);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue