signal-desktop/ts/util/isProtoBinaryEncodingEnabled.ts

14 lines
299 B
TypeScript
Raw Normal View History

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isTestOrMockEnvironment } from '../environment';
export function isProtoBinaryEncodingEnabled(): boolean {
if (isTestOrMockEnvironment()) {
return true;
}
2025-07-10 07:34:42 +10:00
// TODO: DESKTOP-8938
return false;
}