Loading services/core/java/com/android/server/wm/Task.java +5 −3 Original line number Diff line number Diff line Loading @@ -1074,10 +1074,12 @@ class Task extends TaskFragment { // as the one in the task because either one of them could be the alias activity. if (Objects.equals(realActivity, r.mActivityComponent) && this.intent != null) { intent.setComponent(this.intent.getComponent()); if (intent.getSelector() == null) { // Make sure the package name the same to prevent one of the intent is set while the // other one is not. intent.setPackage(this.intent.getPackage()); } } return intent.filterEquals(this.intent); } Loading Loading
services/core/java/com/android/server/wm/Task.java +5 −3 Original line number Diff line number Diff line Loading @@ -1074,10 +1074,12 @@ class Task extends TaskFragment { // as the one in the task because either one of them could be the alias activity. if (Objects.equals(realActivity, r.mActivityComponent) && this.intent != null) { intent.setComponent(this.intent.getComponent()); if (intent.getSelector() == null) { // Make sure the package name the same to prevent one of the intent is set while the // other one is not. intent.setPackage(this.intent.getPackage()); } } return intent.filterEquals(this.intent); } Loading