🐛 Make the app.common.time/inst nil safe

This commit is contained in:
Andrey Antukh 2025-08-27 14:17:11 +02:00
parent cf1a8fff65
commit 9ae1a08573

View File

@ -259,6 +259,9 @@
(defn inst
[s]
(cond
(nil? s)
s
(inst? s)
s