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:
parent
23f7889cff
commit
d46274abf2
1 changed files with 6 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue