mirror of
https://github.com/penpot/penpot.git
synced 2025-08-07 14:38:33 +02:00
Merge pull request #2594 from penpot/niwinz-compatibility-fixes
🐛 Fix compatibility issue with 1.17.x file table changes
This commit is contained in:
commit
0a72859424
1 changed files with 4 additions and 3 deletions
|
@ -567,8 +567,9 @@
|
||||||
;; --- Helpers
|
;; --- Helpers
|
||||||
|
|
||||||
(defn decode-row
|
(defn decode-row
|
||||||
[{:keys [data changes] :as row}]
|
[{:keys [data changes features] :as row}]
|
||||||
(when row
|
(when row
|
||||||
(cond-> row
|
(cond-> row
|
||||||
changes (assoc :changes (blob/decode changes))
|
features (assoc :features (db/decode-pgarray features #{}))
|
||||||
data (assoc :data (blob/decode data)))))
|
changes (assoc :changes (blob/decode changes))
|
||||||
|
data (assoc :data (blob/decode data)))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue