diff --git a/src/org/thoughtcrime/securesms/notifications/NotificationChannels.java b/src/org/thoughtcrime/securesms/notifications/NotificationChannels.java index 2e43329565..628b6ba776 100644 --- a/src/org/thoughtcrime/securesms/notifications/NotificationChannels.java +++ b/src/org/thoughtcrime/securesms/notifications/NotificationChannels.java @@ -517,7 +517,7 @@ public class NotificationChannels { @TargetApi(26) private static boolean channelExists(@Nullable NotificationChannel channel) { - return channel != null && !NotificationChannel.DEFAULT_CHANNEL_ID.equals(channel); + return channel != null && !NotificationChannel.DEFAULT_CHANNEL_ID.equals(channel.getId()); } private interface ChannelUpdater {