@wireapp/core 46.39.0 → 46.39.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/Account.js +1 -1
- package/package.json +2 -2
package/lib/Account.js
CHANGED
|
@@ -898,7 +898,7 @@ class Account extends commons_1.TypedEventEmitter {
|
|
|
898
898
|
};
|
|
899
899
|
isMLSConversationRecoveryEnabled = async () => {
|
|
900
900
|
const commonConfig = (await this.service?.team.getCommonFeatureConfig()) ?? {};
|
|
901
|
-
return commonConfig[team_1.FEATURE_KEY.ALLOWED_GLOBAL_OPERATIONS]?.
|
|
901
|
+
return commonConfig[team_1.FEATURE_KEY.ALLOWED_GLOBAL_OPERATIONS]?.config?.mlsConversationReset === true;
|
|
902
902
|
};
|
|
903
903
|
}
|
|
904
904
|
exports.Account = Account;
|
package/package.json
CHANGED