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

Commit 2331c8ce authored by Qiong Liu's avatar Qiong Liu Committed by android-build-merger
Browse files

Merge "Fix incorrect notification text is displayed for video call in dialing"

am: 1634e818

Change-Id: I64fc4c4e6870e2fe2cb81a2bf5ec96ac74a18792
parents 7c40c6d1 1634e818
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -709,13 +709,13 @@ public class StatusBarNotifier
      }
    } else if (call.getState() == DialerCallState.ONHOLD) {
      resId = R.string.notification_on_hold;
    } else if (DialerCallState.isDialing(call.getState())) {
      resId = R.string.notification_dialing;
    } else if (call.isVideoCall()) {
      resId =
          call.getVideoTech().isPaused()
              ? R.string.notification_ongoing_paused_video_call
              : R.string.notification_ongoing_video_call;
    } else if (DialerCallState.isDialing(call.getState())) {
      resId = R.string.notification_dialing;
    } else if (call.getVideoTech().getSessionModificationState()
        == SessionModificationState.RECEIVED_UPGRADE_TO_VIDEO_REQUEST) {
      resId = R.string.notification_requesting_video_call;