From ae3d83d5f2b12f4e2abd7dfe7cc285f372ea4289 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 8 Mar 2021 15:49:41 +0100 Subject: [PATCH] Fix comments-open? logic. sadness --- tekuti/post.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tekuti/post.scm b/tekuti/post.scm index 5624b5a..993fb07 100644 --- a/tekuti/post.scm +++ b/tekuti/post.scm @@ -123,7 +123,7 @@ (cond ((post-comments-closed-timestamp post) => (lambda (at-timestamp) - (< at-timestamp (time-second (current-time))))) + (< (time-second (current-time)) at-timestamp))) (else #t)))) (define (post-comments-closed-timestamp post)