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

Commit 8236f525 authored by Winson Chung's avatar Winson Chung
Browse files

Adding missing passthrough of task affiliate id.

Change-Id: Ied2997418ae4c17d0d130c9e6434c0e6e645da41
parent 305addef
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -523,8 +523,8 @@ public class RecentsTaskLoader {
            ActivityInfo info = ssp.getActivityInfo(t.baseIntent.getComponent(), t.userId);
            if (info == null) continue;

            stack.addTask(new Task(t.persistentId, true, t.baseIntent, 0, null, null, 0, 0,
                    t.firstActiveTime, t.lastActiveTime, (i == (taskCount - 1))));
            stack.addTask(new Task(t.persistentId, true, t.baseIntent, t.affiliatedTaskId, null,
                    null, 0, 0, t.firstActiveTime, t.lastActiveTime, (i == (taskCount - 1))));
        }
        stack.createSimulatedAffiliatedGroupings();
        return stack;