aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-12-27 17:08:15 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-12-27 17:08:15 +0100
commit344a39d93c1b41a778480d2a6608d8f7720a46c3 (patch)
tree901cf232d8a5f1ab6a374b11131b54182aff6138 /module
parentHTML output comments. (diff)
downloadcalp-344a39d93c1b41a778480d2a6608d8f7720a46c3.tar.gz
calp-344a39d93c1b41a778480d2a6608d8f7720a46c3.tar.xz
HTML Fix whole day events missing from sidebar.
Diffstat (limited to 'module')
-rw-r--r--module/output/html.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index f0c021c3..0f6fbbd0 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -158,9 +158,10 @@
(stream-filter
(lambda (ev)
;; If start was an earlier day
- ;; This removes all descriptions from events for previous days,
+ ;; This removes all descriptions from
+ ;; events for previous days,
;; solving duplicates.
- (time<? (date->time-utc date)
+ (time<=? (date->time-utc date)
(attr ev 'DTSTART)))
events))))))