@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.
Files changed (2) hide show
  1. package/lib/Account.js +1 -1
  2. 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]?.status === team_1.FeatureStatus.ENABLED;
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
@@ -61,6 +61,6 @@
61
61
  "test:coverage": "jest --coverage",
62
62
  "watch": "tsc --watch"
63
63
  },
64
- "version": "46.39.0",
65
- "gitHead": "36564aadbe435668608f785e1c496b626c6fdf71"
64
+ "version": "46.39.1",
65
+ "gitHead": "4c666cabe7efdc36504e0d0eb1490562e90e8c81"
66
66
  }