From 8b92680a8238b582c15d748021614641ec359d29 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 29 Nov 2023 15:45:59 +0100 Subject: [PATCH] :bug: Fix incorrect feature checking on movig files between teams --- common/src/app/common/features.cljc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/app/common/features.cljc b/common/src/app/common/features.cljc index 0a250b19f..9004375b8 100644 --- a/common/src/app/common/features.cljc +++ b/common/src/app/common/features.cljc @@ -242,6 +242,7 @@ (let [not-supported (-> (or source-features #{}) (set/difference destination-features) (set/difference no-migration-features) + (set/difference default-enabled-features) (seq))] (when not-supported (ex/raise :type :restriction @@ -253,6 +254,7 @@ (let [not-supported (-> (or destination-features #{}) (set/difference source-features) (set/difference no-migration-features) + (set/difference default-enabled-features) (seq))] (when not-supported (ex/raise :type :restriction