From ac33df2054943190ce15397ab5f600fe40c826ca Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 18 Oct 2024 18:13:00 +0200 Subject: [PATCH] :bug: Remove plugin data from binfile v3 export --- backend/src/app/binfile/v3.clj | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/backend/src/app/binfile/v3.clj b/backend/src/app/binfile/v3.clj index b68ec831f..bb5c29c3c 100644 --- a/backend/src/app/binfile/v3.clj +++ b/backend/src/app/binfile/v3.clj @@ -248,7 +248,6 @@ data (:data file) typographies (:typographies data) - plugins-data (:plugin-data data) components (:components data) colors (:colors data) @@ -322,11 +321,7 @@ (doseq [[id object] typographies] (let [path (str "files/" file-id "/typographies/" id ".json") color (encode-typography object)] - (write-entry! output path color))) - - (when-let [data (not-empty plugins-data)] - (let [path (str "files/" file-id "/plugin-data.json")] - (write-entry! output path data))))) + (write-entry! output path color))))) (defn- export-files [{:keys [::ids ::include-libraries ::output] :as cfg}]