Files
Desktop/ts/util/isProtoBinaryEncodingEnabled.ts
2025-06-25 10:30:40 -07:00

14 lines
344 B
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isTestOrMockEnvironment } from '../environment';
export function isProtoBinaryEncodingEnabled(): boolean {
if (isTestOrMockEnvironment()) {
return true;
}
// TODO: https://signalmessenger.atlassian.net/browse/DESKTOP-8938
return false;
}