Update to 6.3.0 (2042)

This commit is contained in:
DrKLO 2020-07-27 00:11:01 +03:00
parent 520592b43d
commit 320710366d
17 changed files with 222 additions and 211 deletions

View file

@ -226,7 +226,11 @@ public class NotificationsController extends BaseController {
notificationChannel.enableLights(false);
notificationChannel.enableVibration(false);
notificationChannel.setSound(null, null);
systemNotificationManager.createNotificationChannel(notificationChannel);
try {
systemNotificationManager.createNotificationChannel(notificationChannel);
} catch (Exception e) {
FileLog.e(e);
}
}
}