Skip to content

Commit

Permalink
fix: Remove NotificationDot for some notifications RC (#2856)
Browse files Browse the repository at this point in the history
Co-authored-by: Mohamad Jaara <[email protected]>
  • Loading branch information
borichellow and MohamadJaara authored Apr 5, 2024
1 parent aeff098 commit d67bf85
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ class NotificationChannelsManager @Inject constructor(
.setVibrationEnabled(false)
.setImportance(NotificationManagerCompat.IMPORTANCE_DEFAULT)
.setSound(null, null)
.setShowBadge(false)
.build()

notificationManagerCompat.createNotificationChannel(notificationChannel)
Expand Down Expand Up @@ -165,6 +166,7 @@ class NotificationChannelsManager @Inject constructor(
val notificationChannel = NotificationChannelCompat
.Builder(channelId, NotificationManagerCompat.IMPORTANCE_HIGH)
.setName(channelName)
.setShowBadge(false)
.build()

notificationManagerCompat.createNotificationChannel(notificationChannel)
Expand Down

0 comments on commit d67bf85

Please sign in to comment.