Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc649410 authored by calderwoodra's avatar calderwoodra Committed by Copybara-Service
Browse files

Added assisted dialing to all calls in speed dial.

Bug: 79213974
Test: n/a
PiperOrigin-RevId: 196868459
Change-Id: Ic1df5debf5273f3b41985b6922589854f07733e1
parent 284a5461
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -186,6 +186,7 @@ public class DisambigDialog extends DialogFragment {
    PreCall.start(
        getContext(),
        new CallIntentBuilder(channel.number(), CallInitiationType.Type.SPEED_DIAL)
            .setAllowAssistedDial(true)
            .setIsVideoCall(true)
            .setIsDuoCall(channel.technology() == Channel.DUO));
    dismiss();
@@ -197,7 +198,9 @@ public class DisambigDialog extends DialogFragment {
    }

    PreCall.start(
        getContext(), new CallIntentBuilder(channel.number(), CallInitiationType.Type.SPEED_DIAL));
        getContext(),
        new CallIntentBuilder(channel.number(), CallInitiationType.Type.SPEED_DIAL)
            .setAllowAssistedDial(true));
    dismiss();
  }

+3 −0
Original line number Diff line number Diff line
@@ -347,6 +347,7 @@ public class SpeedDialFragment extends Fragment {
      PreCall.start(
          activity,
          new CallIntentBuilder(channel.number(), CallInitiationType.Type.SPEED_DIAL)
              .setAllowAssistedDial(true)
              .setIsVideoCall(channel.isVideoTechnology())
              .setIsDuoCall(channel.technology() == Channel.DUO));
    }
@@ -441,6 +442,7 @@ public class SpeedDialFragment extends Fragment {
      PreCall.start(
          getContext(),
          new CallIntentBuilder(channel.number(), CallInitiationType.Type.SPEED_DIAL)
              .setAllowAssistedDial(true)
              .setIsVideoCall(channel.isVideoTechnology())
              .setIsDuoCall(channel.technology() == Channel.DUO));
    }
@@ -523,6 +525,7 @@ public class SpeedDialFragment extends Fragment {
      PreCall.start(
          activity,
          new CallIntentBuilder(channel.number(), CallInitiationType.Type.SPEED_DIAL)
              .setAllowAssistedDial(true)
              .setIsVideoCall(channel.isVideoTechnology())
              .setIsDuoCall(channel.technology() == Channel.DUO));
    }