session-ios/SignalUtilitiesKit/Utilities/TSConstants.m

21 lines
322 B
Mathematica
Raw Permalink Normal View History

2020-11-11 00:58:56 +01:00
//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
//
#import "TSConstants.h"
NS_ASSUME_NONNULL_BEGIN
2020-11-12 06:02:21 +01:00
const NSUInteger kOversizeTextMessageSizeThreshold = 2 * 1024;
2020-11-11 00:58:56 +01:00
BOOL IsUsingProductionService()
{
#ifdef USING_PRODUCTION_SERVICE
return YES;
#else
return NO;
#endif
}
NS_ASSUME_NONNULL_END