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

Commit 8446a7d4 authored by Julia Reynolds's avatar Julia Reynolds Committed by Automerger Merge Worker
Browse files

Remove unneeded NEW_TASK am: 717e3f62

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/15778692

Change-Id: I7c184dc768503f4b121bf84c2339e531818efcc8
parents f8bb8ace 717e3f62
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -90,7 +90,6 @@ public class NotificationHistoryAdapter extends
                    .putExtra(EXTRA_APP_PACKAGE, hn.getPackage())
                    .putExtra(EXTRA_CHANNEL_ID, hn.getChannelId())
                    .putExtra(EXTRA_CONVERSATION_ID, hn.getConversationId());
            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            holder.itemView.getContext().startActivityAsUser(intent, UserHandle.of(hn.getUserId()));
        };
        holder.itemView.setOnClickListener(onClick);
+0 −1
Original line number Diff line number Diff line
@@ -133,7 +133,6 @@ public class NotificationSbnAdapter extends
                        .putExtra(EXTRA_APP_PACKAGE, sbn.getPackageName())
                        .putExtra(EXTRA_CHANNEL_ID, sbn.getNotification().getChannelId())
                        .putExtra(EXTRA_CONVERSATION_ID, sbn.getNotification().getShortcutId());
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                holder.itemView.getContext().startActivityAsUser(intent, UserHandle.of(userId));
                return true;
            });