fix: use lower case for marker comparison

pull/645/head
Yukun Guo 2020-11-05 15:22:43 +08:00
parent c707107ae1
commit 805f9bb722
1 changed files with 1 additions and 1 deletions

View File

@ -743,7 +743,7 @@
properties (into {} (:block/properties block))]
(if (and
new-marker
(not= new-marker (:block/marker block))
(not= new-marker (string/lower-case (:block/marker block)))
(state/enable-timetracking?))
(assoc properties new-marker (util/time-ms))
properties)))