2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 05:37:43 +00:00

Fix crash on old API

This commit is contained in:
Albert Vaca Cintora 2019-03-21 23:02:04 +01:00
parent 3b82cd44e4
commit a8bc4f24c7

View File

@ -466,10 +466,12 @@ public class NotificationsPlugin extends Plugin implements NotificationReceiver.
private void sendCurrentNotifications(NotificationReceiver service) { private void sendCurrentNotifications(NotificationReceiver service) {
StatusBarNotification[] notifications = service.getActiveNotifications(); StatusBarNotification[] notifications = service.getActiveNotifications();
if (notifications != null) { //Can happen only on API 23 and lower
for (StatusBarNotification notification : notifications) { for (StatusBarNotification notification : notifications) {
sendNotification(notification); sendNotification(notification);
} }
} }
}
@Override @Override
public boolean onPacketReceived(final NetworkPacket np) { public boolean onPacketReceived(final NetworkPacket np) {