0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-05 11:31:35 -05:00

Add better error reporting on zip file importation

This commit is contained in:
Andrey Antukh 2024-10-10 11:43:09 +02:00 committed by Alonso Torres
parent 23f7889cff
commit d46274abf2

View file

@ -817,9 +817,12 @@
:errors (:errors file)
:file-id (:file-id data)})))))))
(rx/catch (fn [cause]
(log/error :hint (ex-message cause)
:file-id (:file-id data)
:cause cause)
(let [data (ex-data cause)]
(log/error :hint (ex-message cause)
:file-id (:file-id data))
(when-let [explain (:explain data)]
(js/console.log explain)))
(rx/of {:status :import-error
:file-id (:file-id data)
:error (ex-message cause)