mirror of https://github.com/penpot/penpot.git
🐛 Fix minor issue with pointer-map feature interaction with team features
This commit is contained in:
parent
99f39c9777
commit
59fe93cb45
|
|
@ -190,10 +190,16 @@
|
|||
|
||||
(check-supported-features! file-features)
|
||||
|
||||
(let [not-supported (-> file-features
|
||||
(set/difference enabled-features)
|
||||
(set/difference client-features)
|
||||
(set/difference frontend-only-features))]
|
||||
(let [;; We should ignore all features that does not match with
|
||||
;; the `no-migration-features` set because we can't enable
|
||||
;; them as-is, because they probably need migrations
|
||||
client-features (set/intersection client-features no-migration-features)
|
||||
not-supported (-> file-features
|
||||
(set/difference enabled-features)
|
||||
(set/difference client-features)
|
||||
(set/difference backend-only-features)
|
||||
(set/difference frontend-only-features))]
|
||||
|
||||
(when (seq not-supported)
|
||||
(ex/raise :type :restriction
|
||||
:code :feature-mismatch
|
||||
|
|
|
|||
Loading…
Reference in New Issue