Skip to content

Commit 2ab2510

Browse files
committed
fix: update group release timestamp
1 parent a62cb30 commit 2ab2510

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

preload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ window.getUserKeys = async () => {
5151
window.sessionFeatureFlags = {
5252
useOnionRequests: true,
5353
useTestNet: isTestNet() || isTestIntegration(),
54-
useClosedGroupV2: true, // TODO DO NOT MERGE Remove after QA
54+
useClosedGroupV2: false, // TODO DO NOT MERGE Remove after QA
5555
forceLegacyGroupsDeprecated: false, // TODO DO NOT MERGE Remove after QA
5656
useClosedGroupV2QAButtons: false, // TODO DO NOT MERGE Remove after QA
5757
replaceLocalizedStringsWithKeys: false,

ts/components/conversation/SessionConversation.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,6 @@ function OutdatedLegacyGroupBanner() {
700700
'h:mm a, d MMM yyyy'
701701
);
702702

703-
// FIXME change the date here. Remove after QA
704703
const text = deprecatedLegacyGroups
705704
? localize(
706705
weAreAdmin ? 'legacyGroupAfterDeprecationAdmin' : 'legacyGroupAfterDeprecationMember'

ts/session/constants.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,18 +99,15 @@ export const REACT_LIMIT = 6;
9999

100100
export const UPDATER_INTERVAL_MS = 10 * DURATION.MINUTES;
101101

102-
// update this to be when we ship desktop groups REMOVE AFTER QA
103-
const GROUP_DESKTOP_RELEASE = 1735693200000; // currently 1st Jan 2025
104-
105102
/**
106-
* 3+7 days after the release of groups (more or less), we force new groups to be created as new groups
103+
* 3+7 days after the release of groups, we force groups to be created as *new* groups
107104
*/
108-
const START_CREATE_NEW_GROUP = GROUP_DESKTOP_RELEASE + DURATION.DAYS * 10;
105+
const START_CREATE_NEW_GROUP = 1741816800000; // Currently Thursday March 13th 09:00 AEDT
109106

110107
/**
111108
* 2 weeks after `START_CREATE_NEW_GROUP`, we mark legacy groups readonly
112109
*/
113-
const LEGACY_GROUP_READONLY = START_CREATE_NEW_GROUP + DURATION.WEEKS * 2;
110+
const LEGACY_GROUP_READONLY = 1743026400000; // Currently Thursday March 27th 09:00 AEDT
114111

115112
export const FEATURE_RELEASE_TIMESTAMPS = {
116113
DISAPPEARING_MESSAGES_V2: 1710284400000, // 13/03/2024 10:00 Melbourne time

0 commit comments

Comments
 (0)