degesch: connect _after_ starting the UI

This commit is contained in:
Přemysl Eric Janouch 2015-05-03 00:04:09 +02:00
parent 6d0fff6a71
commit b31104784c
1 changed files with 3 additions and 8 deletions

View File

@ -4306,6 +4306,7 @@ end:
static bool
irc_connect (struct server *s, struct error **e)
{
// TODO: connect asynchronously so that we don't freeze
struct app_context *ctx = s->ctx;
const char *irc_host = get_config_string (ctx, "server.irc_host");
@ -4747,14 +4748,8 @@ main (int argc, char *argv[])
ctx.current_buffer = ctx.server.buffer;
refresh_prompt (&ctx);
// TODO: connect asynchronously (first step towards multiple servers)
struct error *e = NULL;
if (!irc_connect (&ctx.server, &e))
{
buffer_send_error (&ctx, ctx.server.buffer, "%s", e->message);
error_free (e);
exit (EXIT_FAILURE);
}
// Connect to the server ASAP
poller_timer_set (&ctx.server.reconnect_tmr, 0);
rl_startup_hook = init_readline;
rl_catch_sigwinch = false;