wrong notification channel name

This commit is contained in:
Mike Schwörer 2018-11-19 18:41:56 +01:00
parent 5d8e871871
commit b780ccea1c
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class NotificationService
NotificationChannel channel2 = notifman.getNotificationChannel(CHANNEL_P2_ID);
if (channel2 == null)
{
channel2 = new NotificationChannel(CHANNEL_P1_ID, "Push notifications (high priority)", NotificationManager.IMPORTANCE_DEFAULT);
channel2 = new NotificationChannel(CHANNEL_P2_ID, "Push notifications (high priority)", NotificationManager.IMPORTANCE_DEFAULT);
channel2.setDescription("Push notifications from the server with low priority.\nGo to the in-app settings to configure ringtone, volume and vibrations");
channel2.setSound(null, null);
channel2.setVibrationPattern(null);