From 620b0944bf641353814de978496b65aafc1e77ec Mon Sep 17 00:00:00 2001 From: saturn Date: Sun, 5 Mar 2023 02:15:34 -0600 Subject: [PATCH] Make shared drafts viewable when shown in inbox. --- lw2.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lw2.lisp b/lw2.lisp index 4a822d6b..ab878111 100644 --- a/lw2.lisp +++ b/lw2.lisp @@ -362,7 +362,7 @@ signaled condition to *HTML-OUTPUT*." (:conversation (conversation-index-to-html out-stream x)) (:post - (post-headline-to-html x :need-auth need-auth :skip-section skip-section)) + (post-headline-to-html x :need-auth (or need-auth (cdr (assoc :draft x))) :skip-section skip-section)) (:comment (comment-thread-to-html out-stream (lambda () (comment-item-to-html out-stream x :with-post-title t)))) -- 2.11.4.GIT