From e8930530de1b20f7bdc64768d3066ec0d3528537 Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Tue, 26 Oct 2021 12:15:13 +0200 Subject: [PATCH] rename method since vibrator implementation has been removed Signed-off-by: Andy Scherzinger --- .../talk/controllers/CallNotificationController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/nextcloud/talk/controllers/CallNotificationController.java b/app/src/main/java/com/nextcloud/talk/controllers/CallNotificationController.java index 8d8d590c5..66e6dcdf7 100644 --- a/app/src/main/java/com/nextcloud/talk/controllers/CallNotificationController.java +++ b/app/src/main/java/com/nextcloud/talk/controllers/CallNotificationController.java @@ -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(); }