Add topActivity to the list of states that task organizer cares.

Bug: 256215798
Test: manual test
Change-Id: I4f9a3d6feed7dfbac9f53659a850ec3d237cebaf
This commit is contained in:
Josh Yang
2022-10-31 17:10:37 -07:00
parent 64e965a802
commit 453585f2b2

View File

@@ -449,7 +449,8 @@ public class TaskInfo {
&& isVisible == that.isVisible
&& isSleeping == that.isSleeping
&& Objects.equals(mTopActivityLocusId, that.mTopActivityLocusId)
&& parentTaskId == that.parentTaskId;
&& parentTaskId == that.parentTaskId
&& Objects.equals(topActivity, that.topActivity);
}
/**