1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-13 21:49:27 +01:00

Fixed a bug caused by incorrect PendingIntent.getActivity usage

This commit is contained in:
TaaviE 2020-10-06 20:35:26 +03:00
parent cf302a6ba0
commit ad30c528e5

View File

@ -198,6 +198,7 @@ public abstract class AbstractDeviceSupport implements DeviceSupport {
private void handleGBDeviceEventFindPhoneStartNotification() {
LOG.info("Got handleGBDeviceEventFindPhoneStartNotification");
Intent intent = new Intent(context, FindPhoneActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent pi = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
@ -212,7 +213,7 @@ public abstract class AbstractDeviceSupport implements DeviceSupport {
.setContentTitle( context.getString( R.string.find_my_phone_notification ) );
notification.setGroup("BackgroundService");
notificationManager.notify( GB.NOTIFICATION_ID_PHONE_FIND, notification.build());
notificationManager.notify(GB.NOTIFICATION_ID_PHONE_FIND, notification.build());
}