diff options
Diffstat (limited to 'camel/providers/nntp')
-rw-r--r-- | camel/providers/nntp/camel-nntp-summary.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/camel/providers/nntp/camel-nntp-summary.c b/camel/providers/nntp/camel-nntp-summary.c index 6c9c7e54b8..8c0d5f8476 100644 --- a/camel/providers/nntp/camel-nntp-summary.c +++ b/camel/providers/nntp/camel-nntp-summary.c @@ -478,6 +478,10 @@ add_range_xover(CamelNNTPSummary *cns, unsigned int high, unsigned int low, Came } } + /* skip headers we don't care about, incase the server doesn't actually send some it said it would. */ + while (xover && xover->name == NULL) + xover = xover->next; + /* truncated line? ignore? */ if (xover == NULL) { mi = camel_folder_summary_uid(s, cns->priv->uid); |