From 9ae1a08573cb35adf103cad77c0d75f6c76fd756 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 27 Aug 2025 14:17:11 +0200 Subject: [PATCH] :bug: Make the `app.common.time/inst` nil safe --- common/src/app/common/time.cljc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/src/app/common/time.cljc b/common/src/app/common/time.cljc index 62f5551589..d32ecfbefe 100644 --- a/common/src/app/common/time.cljc +++ b/common/src/app/common/time.cljc @@ -259,6 +259,9 @@ (defn inst [s] (cond + (nil? s) + s + (inst? s) s