From 1d166288615ebb12189e0283b8e016d9859d9b29 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 21 Mar 2016 11:51:24 +0100 Subject: [PATCH] Start polling in test client upon a successful login This was removed unintentionally two commits ago. Signed-off-by: Gergely Polonkai --- src/test-client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test-client.c b/src/test-client.c index 0cc8d46..789b9bd 100644 --- a/src/test-client.c +++ b/src/test-client.c @@ -77,6 +77,7 @@ login_finished(MatrixClient *client, gboolean success, GMainLoop *loop) if (success) { save_state(client); + matrix_client_begin_polling(client, NULL); } else { g_main_loop_quit(loop); }