Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 137d4fb6 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7083477 from fbbea9fa to sc-release

Change-Id: Ic1ee34b332269f76858ab66c155f2f9a3436c06f
parents a8bfc6a9 fbbea9fa
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -310,7 +310,8 @@ abstract public class Job implements Runnable {
                        failureCount, failureCount))
                        failureCount, failureCount))
                .setContentText(service.getString(R.string.notification_touch_for_details))
                .setContentText(service.getString(R.string.notification_touch_for_details))
                .setContentIntent(PendingIntent.getActivity(appContext, 0, navigateIntent,
                .setContentIntent(PendingIntent.getActivity(appContext, 0, navigateIntent,
                        PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT))
                        PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT
                        | PendingIntent.FLAG_MUTABLE))
                .setCategory(Notification.CATEGORY_ERROR)
                .setCategory(Notification.CATEGORY_ERROR)
                .setSmallIcon(icon)
                .setSmallIcon(icon)
                .setAutoCancel(true);
                .setAutoCancel(true);
@@ -341,7 +342,8 @@ abstract public class Job implements Runnable {
                        service,
                        service,
                        0,
                        0,
                        cancelIntent,
                        cancelIntent,
                        PendingIntent.FLAG_ONE_SHOT | PendingIntent.FLAG_CANCEL_CURRENT));
                        PendingIntent.FLAG_ONE_SHOT | PendingIntent.FLAG_CANCEL_CURRENT
                        | PendingIntent.FLAG_MUTABLE));


        return progressBuilder;
        return progressBuilder;
    }
    }