From f4b49126c75517c7438eb84218c2f1f4df4b804b Mon Sep 17 00:00:00 2001 From: atavism Date: Wed, 4 Oct 2023 07:30:19 -0700 Subject: [PATCH] disable vibration --- .../org/getlantern/lantern/notification/NotificationHelper.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/src/main/kotlin/org/getlantern/lantern/notification/NotificationHelper.kt b/android/app/src/main/kotlin/org/getlantern/lantern/notification/NotificationHelper.kt index 8efd5f99a..368def7c2 100644 --- a/android/app/src/main/kotlin/org/getlantern/lantern/notification/NotificationHelper.kt +++ b/android/app/src/main/kotlin/org/getlantern/lantern/notification/NotificationHelper.kt @@ -53,7 +53,7 @@ class NotificationHelper( private fun setChannelOptions(notificationChannel: NotificationChannel) { notificationChannel.enableLights(true) notificationChannel.lightColor = Color.GREEN - notificationChannel.enableVibration(true) + notificationChannel.enableVibration(false) notificationChannel.setSound(null, null) manager.createNotificationChannel(notificationChannel) }