Enable link & sync in beta

Co-authored-by: trevor-signal <131492920+trevor-signal@users.noreply.github.com>
This commit is contained in:
automated-signal
2025-01-28 23:48:36 -06:00
committed by Fedor Indutny
parent c72f788d9d
commit c1d5a835e0
2 changed files with 3 additions and 12 deletions
+2 -9
View File
@@ -1,9 +1,7 @@
// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isTestOrMockEnvironment } from '../environment';
import { isStagingServer } from './isStagingServer';
import { isAdhoc, isNightly } from './version';
import { isProduction } from './version';
import { everDone as wasRegistrationEverDone } from './registration';
export function isLinkAndSyncEnabled(version: string): boolean {
@@ -12,10 +10,5 @@ export function isLinkAndSyncEnabled(version: string): boolean {
return false;
}
return (
isStagingServer() ||
isTestOrMockEnvironment() ||
isNightly(version) ||
isAdhoc(version)
);
return !isProduction(version);
}