Added comment

This commit is contained in:
M66B 2019-07-12 10:05:30 +02:00
parent 9e9c3ccff1
commit a8d18b8bf7
1 changed files with 3 additions and 1 deletions

View File

@ -1931,7 +1931,9 @@ class Core {
private static List<Notification> getNotificationUnseen(Context context, String group, List<TupleMessageEx> messages) {
List<Notification> notifications = new ArrayList<>();
// https://developer.android.com/training/notify-user/group
// Android 7+ https://developer.android.com/training/notify-user/group
// Android 8+ https://developer.android.com/training/notify-user/channels
NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
if (messages == null || messages.size() == 0 || nm == null)