From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id BB41A1F513 for ; Tue, 28 Nov 2023 17:37:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1701193022; bh=JT40xH8Rq1ONlUEbh5TNzQyfYbQxRk6ooGIvtIdt5PY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=z9zHPpJ0hSKiE0DH31/bTol12F4fJSK8tIUMFv6L5woHB6lWi2zHfer+1mg9hKdH5 1yEC3mlvm4a9a8828jvmqHNMxgFNyJuh8BlzUF+BkQb43FN2u8WFwbRrMFCSbBJSJS 3LakFBEVHkOinAEDaHyJIEIAxx/rOLCvnSmVYhYk= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 4/4] www: mail_diff: add missing tag Date: Tue, 28 Nov 2023 17:37:01 +0000 Message-ID: <20231128173701.1472101-5-e@80x24.org> In-Reply-To: <20231128173701.1472101-1-e@80x24.org> References: <20231128173701.1472101-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Found by tidy(1) while dealing with other stuff. --- lib/PublicInbox/MailDiff.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/MailDiff.pm b/lib/PublicInbox/MailDiff.pm index 89284e39..e4e262ef 100644 --- a/lib/PublicInbox/MailDiff.pm +++ b/lib/PublicInbox/MailDiff.pm @@ -56,7 +56,7 @@ sub next_smsg ($) { $self->{smsg} = $over ? $over->next_by_mid(@{$self->{next_arg}}) : $ctx->gone('over'); if (!$self->{smsg}) { - $ctx->write($ctx->_html_end); + $ctx->write('', $ctx->_html_end); return $ctx->close; } PublicInbox::DS::requeue($self) if $ctx->{env}->{'pi-httpd.async'};