diff options
-rwxr-xr-x | journal.lisp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/journal.lisp b/journal.lisp index f1fd5b1..e9f55c8 100755 --- a/journal.lisp +++ b/journal.lisp @@ -51,6 +51,7 @@ (defun show-comment-feed () #.(locally-enable-sql-reader-syntax) + (revalidate-cache-or-die) (http-add-header "Last-Modified" (http-timestamp (compute-journal-last-modified-date))) (http-add-header "Content-Language" "de") (http-send-headers "application/atom+xml; charset=UTF-8") @@ -122,6 +123,7 @@ (defun show-atom-feed () #.(locally-enable-sql-reader-syntax) + (revalidate-cache-or-die) (http-add-header "Last-Modified" (http-timestamp (compute-journal-last-modified-date))) (http-add-header "Content-Language" "de") (http-send-headers "application/atom+xml; charset=UTF-8") |