From cc975240516c86bb3221443a1a91c3752706ad3c Mon Sep 17 00:00:00 2001 From: wwp Date: Wed, 14 Mar 2018 11:22:47 +0100 Subject: [PATCH 1/1] Clear statusbar's progressbar in case of NNTP xhdr/xover failure. --- src/etpan/nntp-thread.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/etpan/nntp-thread.c b/src/etpan/nntp-thread.c index 26079ebf1..3c147d26d 100644 --- a/src/etpan/nntp-thread.c +++ b/src/etpan/nntp-thread.c @@ -867,6 +867,7 @@ int nntp_threaded_xover(Folder * folder, guint32 beg, guint32 end, struct newsnn if (l != NULL) newsnntp_xover_resp_list_free(l); newsnntp_xover_resp_list_free(h); + statusbar_progress_all(0, 0, 0); return result.error; } @@ -965,6 +966,7 @@ int nntp_threaded_xhdr(Folder * folder, const char *header, guint32 beg, guint32 if (l != NULL) newsnntp_xhdr_free(l); newsnntp_xhdr_free(h); + statusbar_progress_all(0, 0, 0); return result.error; } -- 2.25.1