mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 00:29:11 +01:00
Re-enable call delete sync events.
This commit is contained in:
committed by
Cody Henthorne
parent
f3a0a059ea
commit
4caaa0033b
@@ -107,7 +107,6 @@ public final class FeatureFlags {
|
||||
private static final String AD_HOC_CALLING = "android.calling.ad.hoc";
|
||||
private static final String EDIT_MESSAGE_RECEIVE = "android.editMessage.receive";
|
||||
private static final String EDIT_MESSAGE_SEND = "android.editMessage.send";
|
||||
private static final String CALL_DELETE_SYNC = "android.calling.deleteSync";
|
||||
private static final String MAX_ATTACHMENT_COUNT = "android.attachments.maxCount";
|
||||
private static final String MAX_ATTACHMENT_SIZE_MB = "android.attachments.maxSize";
|
||||
|
||||
@@ -176,8 +175,7 @@ public final class FeatureFlags {
|
||||
@VisibleForTesting
|
||||
static final Set<String> NOT_REMOTE_CAPABLE = SetUtil.newHashSet(
|
||||
PHONE_NUMBER_PRIVACY,
|
||||
AD_HOC_CALLING,
|
||||
CALL_DELETE_SYNC
|
||||
AD_HOC_CALLING
|
||||
);
|
||||
|
||||
/**
|
||||
@@ -608,13 +606,6 @@ public final class FeatureFlags {
|
||||
return getBoolean(AD_HOC_CALLING, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Whether sending deletion sync events is supported
|
||||
*/
|
||||
public static boolean callDeleteSync() {
|
||||
return getBoolean(CALL_DELETE_SYNC, false);
|
||||
}
|
||||
|
||||
/** Maximum number of attachments allowed to be sent/received. */
|
||||
public static int maxAttachmentCount() {
|
||||
return getInteger(MAX_ATTACHMENT_COUNT, 32);
|
||||
|
||||
Reference in New Issue
Block a user