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

Commit 1d76648e authored by calderwoodra's avatar calderwoodra Committed by android-build-merger
Browse files

Merge "Added assisted dialing to all calls in speed dial." am: b86b1a29

am: 54935302

Change-Id: Ic75dd839c86c605734a79a9c56d428379bda8ef8
parents 17884dc0 54935302
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));
    }