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

Verified Commit 85e06675 authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

EN: Fix notifications on 8.0.0

Actually same issue as #1312
parent 714367b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ class NotifyService : LifecycleService() {
        if (Build.VERSION.SDK_INT >= 29) {
            channel.setAllowBubbles(false)
        }
        channel.vibrationPattern = LongArray(0)
        channel.vibrationPattern = longArrayOf(0)
        getSystemService(NotificationManager::class.java).createNotificationChannel(channel)
        return channel.id
    }