From 2c2656d5453f5e0c673b12c8d3e84c6fd88556e7 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 19 May 2023 10:56:35 +1000 Subject: [PATCH] chore: make an internal build with userconfig forced ON --- ts/util/releaseFeature.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/ts/util/releaseFeature.ts b/ts/util/releaseFeature.ts index 46ca8f9c4..ceb98a59b 100644 --- a/ts/util/releaseFeature.ts +++ b/ts/util/releaseFeature.ts @@ -56,13 +56,17 @@ function getFeatureReleaseTimestamp(featureName: FeatureNameTracked) { } } +function featureStorageItemId(featureName: FeatureNameTracked) { + return `featureReleased-${featureName}`; +} + export async function getIsFeatureReleased(featureName: FeatureNameTracked): Promise { if (getIsFeatureReleasedCached(featureName) === undefined) { // read values from db and cache them as it looks like we did not - const oldIsFeatureReleased = Boolean(Storage.get(`featureReleased-${featureName}`)); + const oldIsFeatureReleased = Boolean(Storage.get(featureStorageItemId(featureName))); // values do not exist in the db yet. Let's store false for now in the db and update our cached value. if (oldIsFeatureReleased === undefined) { - await Storage.put(`featureReleased-${featureName}`, false); + await Storage.put(featureStorageItemId(featureName), false); setIsFeatureReleasedCached(featureName, false); } else { setIsFeatureReleasedCached(featureName, oldIsFeatureReleased); @@ -77,10 +81,11 @@ async function checkIsFeatureReleased(featureName: FeatureNameTracked): Promise< // Is it time to release the feature based on the network timestamp? if ( !featureAlreadyReleased && - GetNetworkTime.getNowWithNetworkOffset() >= getFeatureReleaseTimestamp(featureName) + (GetNetworkTime.getNowWithNetworkOffset() >= getFeatureReleaseTimestamp(featureName) || + featureName === 'user_config_libsession') // we want to make a build which has user config enabled by default for internal testing // TODO to remove for official build ) { window.log.info(`[releaseFeature]: It is time to release ${featureName}. Releasing it now`); - await Storage.put(`featureReleased-${featureName}`, true); + await Storage.put(featureStorageItemId(featureName), true); setIsFeatureReleasedCached(featureName, true); // trigger a sync right away so our user data is online await ConfigurationSync.queueNewJobIfNeeded();