rename method since vibrator implementation has been removed

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2021-10-26 12:15:13 +02:00
parent 67df1fb341
commit e8930530de
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B

View File

@ -441,7 +441,7 @@ public class CallNotificationController extends BaseController {
}
}
private void endMediaAndVibratorNotifications() {
private void endMediaNotifications() {
if (mediaPlayer != null) {
if (mediaPlayer.isPlaying()) {
mediaPlayer.stop();
@ -461,7 +461,7 @@ public class CallNotificationController extends BaseController {
handler = null;
}
dispose();
endMediaAndVibratorNotifications();
endMediaNotifications();
super.onDestroy();
}