From 36c986d8e8e327ef0fc6d7fe24c532727b330540 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Thu, 23 Oct 2025 07:42:47 +0200 Subject: [PATCH] =?UTF-8?q?:bug:=20Fix=20file=20doesn=E2=80=99t=20open=20a?= =?UTF-8?q?fter=20deleting=20the=20library=20used=20in=20it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/app/binfile/common.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/binfile/common.clj b/backend/src/app/binfile/common.clj index 1781860c05..1f6ab99cf2 100644 --- a/backend/src/app/binfile/common.clj +++ b/backend/src/app/binfile/common.clj @@ -749,7 +749,7 @@ l.version FROM libs AS l INNER JOIN project AS p ON (p.id = l.project_id) - WHERE l.deleted_at IS NULL OR l.deleted_at > now();") + WHERE l.deleted_at IS NULL;") (defn get-file-libraries [conn file-id]