From d6dc0fe1a75203f249965154485651bebc8a44b4 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 31 Mar 2026 14:36:43 +0200 Subject: [PATCH] :bug: Fix raw file data download on dbg pannel (#8847) --- backend/src/app/http/debug.clj | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/backend/src/app/http/debug.clj b/backend/src/app/http/debug.clj index 35650f9a10..6fb8419ac8 100644 --- a/backend/src/app/http/debug.clj +++ b/backend/src/app/http/debug.clj @@ -31,7 +31,6 @@ [app.srepl.main :as srepl] [app.storage :as-alias sto] [app.storage.tmp :as tmp] - [app.util.blob :as blob] [app.util.template :as tmpl] [cuerdas.core :as str] [datoteka.io :as io] @@ -71,8 +70,7 @@ (defn- get-resolved-file [cfg file-id] - (some-> (bfc/get-file cfg file-id :migrate? false) - (update :data blob/encode))) + (bfc/get-file cfg file-id :migrate? false :decode? false)) (defn prepare-download [file filename]