1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

Merge pull request #1113 from profanity-im/fix/1112-autoconnect

Check autoconnect set settings
This commit is contained in:
Michael Vetter 2019-06-05 15:12:09 +02:00 committed by GitHub
commit f0c3e4195c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6555,12 +6555,20 @@ cmd_autoconnect(ProfWin *window, const char *const command, gchar **args)
prefs_set_string(PREF_CONNECT_ACCOUNT, NULL); prefs_set_string(PREF_CONNECT_ACCOUNT, NULL);
cons_show("Autoconnect account disabled."); cons_show("Autoconnect account disabled.");
} else if (strcmp(args[0], "set") == 0) { } else if (strcmp(args[0], "set") == 0) {
prefs_set_string(PREF_CONNECT_ACCOUNT, args[1]); if (args[1] == NULL || strlen(args[1]) == 0) {
cons_show("Autoconnect account set to: %s.", args[1]); cons_bad_cmd_usage(command);
} else {
if (accounts_account_exists(args[1])) {
prefs_set_string(PREF_CONNECT_ACCOUNT, args[1]);
cons_show("Autoconnect account set to: %s.", args[1]);
} else {
cons_show_error("Account '%s' does not exist.", args[1]);
}
}
} else { } else {
cons_bad_cmd_usage(command); cons_bad_cmd_usage(command);
} }
return true; return TRUE;
} }
gboolean gboolean