@@ -582,7 +582,7 @@ class NotificationUtils @Inject constructor(
582
582
val accentColor = ContextCompat .getColor(context, R .color.notification_accent_color)
583
583
// Build the pending intent for when the notification is clicked
584
584
val openRoomIntent = buildOpenRoomIntent(roomInfo.roomId)
585
- val smallIcon = R .drawable.ic_status_bar
585
+ val smallIcon = R .drawable.ic_notification
586
586
587
587
val channelID = if (roomInfo.shouldBing) NOISY_NOTIFICATION_CHANNEL_ID else SILENT_NOTIFICATION_CHANNEL_ID
588
588
return NotificationCompat .Builder (context, channelID)
@@ -695,7 +695,7 @@ class NotificationUtils @Inject constructor(
695
695
): Notification {
696
696
val accentColor = ContextCompat .getColor(context, R .color.notification_accent_color)
697
697
// Build the pending intent for when the notification is clicked
698
- val smallIcon = R .drawable.ic_status_bar
698
+ val smallIcon = R .drawable.ic_notification
699
699
700
700
val channelID = if (inviteNotifiableEvent.noisy) NOISY_NOTIFICATION_CHANNEL_ID else SILENT_NOTIFICATION_CHANNEL_ID
701
701
@@ -775,7 +775,7 @@ class NotificationUtils @Inject constructor(
775
775
): Notification {
776
776
val accentColor = ContextCompat .getColor(context, R .color.notification_accent_color)
777
777
// Build the pending intent for when the notification is clicked
778
- val smallIcon = R .drawable.ic_status_bar
778
+ val smallIcon = R .drawable.ic_notification
779
779
780
780
val channelID = if (simpleNotifiableEvent.noisy) NOISY_NOTIFICATION_CHANNEL_ID else SILENT_NOTIFICATION_CHANNEL_ID
781
781
@@ -890,7 +890,7 @@ class NotificationUtils @Inject constructor(
890
890
lastMessageTimestamp : Long
891
891
): Notification {
892
892
val accentColor = ContextCompat .getColor(context, R .color.notification_accent_color)
893
- val smallIcon = R .drawable.ic_status_bar
893
+ val smallIcon = R .drawable.ic_notification
894
894
895
895
return NotificationCompat .Builder (context, if (noisy) NOISY_NOTIFICATION_CHANNEL_ID else SILENT_NOTIFICATION_CHANNEL_ID )
896
896
.setOnlyAlertOnce(true )
@@ -980,7 +980,7 @@ class NotificationUtils @Inject constructor(
980
980
NotificationCompat .Builder (context, NOISY_NOTIFICATION_CHANNEL_ID )
981
981
.setContentTitle(stringProvider.getString(R .string.app_name))
982
982
.setContentText(stringProvider.getString(R .string.settings_troubleshoot_test_push_notification_content))
983
- .setSmallIcon(R .drawable.ic_status_bar )
983
+ .setSmallIcon(R .drawable.ic_notification )
984
984
.setLargeIcon(getBitmap(context, R .drawable.element_logo_green))
985
985
.setColor(ContextCompat .getColor(context, R .color.notification_accent_color))
986
986
.setPriority(NotificationCompat .PRIORITY_MAX )
0 commit comments