From 33da02421e786812148cb456cdd3cc6a0e86768c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 3 Feb 2025 13:10:06 +0100 Subject: [PATCH] :bug: Fix unexepected exception on importing binfile Happens when importing binfile with files that has deleted_at property. --- backend/src/app/binfile/common.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/app/binfile/common.clj b/backend/src/app/binfile/common.clj index d33792304..91de0eeaf 100644 --- a/backend/src/app/binfile/common.clj +++ b/backend/src/app/binfile/common.clj @@ -481,6 +481,7 @@ file) params (-> file + (dissoc :deleted-at) (update :features db/encode-pgarray conn "text") (update :data blob/encode))]