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

Commit 471cf7e4 authored by kunleiz's avatar kunleiz Committed by Brint E. Kriebel
Browse files

DeskClock: Alarm Vibrator can't stop while coming a MT voice call

- Alarm Vibrator can't stop while coming a MT voice call
- Add inTelephoneCall condition to stop Alarm Vibrate when receive a call.

Change-Id: I2728a217ac3b9d962c61a7291bb65178a7518436
CRs-Fixed: 635036
parent a93f46e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ public class AlarmKlaxon {
            }
        }

        if (instance.mVibrate) {
        if (instance.mVibrate && !inTelephoneCall) {
            Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
            vibrator.vibrate(sVibratePattern, 0);
        }