diff --git a/src/imap/imap-fetch-body.c b/src/imap/imap-fetch-body.c index 6cfe28d8cf..7142ae6ef6 100644 --- a/src/imap/imap-fetch-body.c +++ b/src/imap/imap-fetch-body.c @@ -610,6 +610,7 @@ fetch_snippet(struct imap_fetch_context *ctx, struct mail *mail, return -1; } else if (lazy) { /* not in cache && lazy => give up */ + str_append(ctx->state.cur_str, "SNIPPET (FUZZY NIL)"); return 1; } else { /* @@ -621,6 +622,7 @@ fetch_snippet(struct imap_fetch_context *ctx, struct mail *mail, * sufficiently convoluted this else branch serves to * document it. */ + str_append(ctx->state.cur_str, "SNIPPET (FUZZY NIL)"); return 1; }