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

Commit b86b1a29 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents 284a5461 bc649410
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));
    }