Enable call requests always.

master
Cody Henthorne 2020-07-21 13:37:29 -04:00 committed by Greyson Parrelli
parent 85e4697b7f
commit 0815715f7b
2 changed files with 1 additions and 8 deletions

View File

@ -405,7 +405,7 @@ public class WebRtcCallService extends Service implements CallManager.Observer,
return;
}
if (FeatureFlags.profileForCalling() && (remotePeer.getRecipient() == null || !RecipientUtil.isMessageRequestAccepted(getApplicationContext(), remotePeer.getRecipient()))) {
if (remotePeer.getRecipient() == null || !RecipientUtil.isMessageRequestAccepted(getApplicationContext(), remotePeer.getRecipient())) {
Log.i(TAG, "handleReceivedOffer(): Caller is untrusted.");
intent.putExtra(EXTRA_BROADCAST, true);
intent.putExtra(EXTRA_HANGUP_TYPE, HangupMessage.Type.NEED_PERMISSION.getCode());

View File

@ -52,7 +52,6 @@ public final class FeatureFlags {
private static final String USERNAMES = "android.usernames";
private static final String ATTACHMENTS_V3 = "android.attachmentsV3.2";
private static final String REMOTE_DELETE = "android.remoteDelete";
private static final String PROFILE_FOR_CALLING = "android.profileForCalling.2";
private static final String GROUPS_V2_OLD = "android.groupsv2";
private static final String GROUPS_V2 = "android.groupsv2.2";
private static final String GROUPS_V2_CREATE = "android.groupsv2.create.2";
@ -68,7 +67,6 @@ public final class FeatureFlags {
private static final Set<String> REMOTE_CAPABLE = Sets.newHashSet(
ATTACHMENTS_V3,
REMOTE_DELETE,
PROFILE_FOR_CALLING,
GROUPS_V2,
GROUPS_V2_CREATE,
GROUPS_V2_CAPACITY,
@ -193,11 +191,6 @@ public final class FeatureFlags {
return getBoolean(REMOTE_DELETE, false);
}
/** Whether or not profile sharing is required for calling */
public static boolean profileForCalling() {
return getBoolean(PROFILE_FOR_CALLING, false);
}
/** Groups v2 send and receive. */
public static boolean groupsV2() {
return getBoolean(GROUPS_V2_OLD, false) || getBoolean(GROUPS_V2, false);