From 6539fdf36a61a3f1c8fe3632a208ce1ab097e42f Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Tue, 13 Nov 2012 19:58:49 +0100 Subject: [PATCH] Implemented a force refresh for accounts --- src/account.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/account.c b/src/account.c index 4950be4..9698358 100644 --- a/src/account.c +++ b/src/account.c @@ -371,7 +371,8 @@ int account_quit(Account * account) /* account_refresh */ void account_refresh(Account * account) { - /* FIXME really implement */ + account_stop(account); + account_start(account); }