Fix search for app leftover locks

The leftover locks search was creating an array rather than an object
keyed by the appId. This could affect the lock cleanup and make leftover
locks from one app affect the install of the app in local mode.

Change-type: patch
This commit is contained in:
Felipe Lalanne 2025-04-01 17:56:06 -03:00
parent 49b18b4a37
commit d475b1d830
No known key found for this signature in database
GPG Key ID: 03E696BFD472B26A

View File

@ -187,8 +187,12 @@ export async function inferNextSteps(
const currentAppIds = Object.keys(currentApps).map((i) => parseInt(i, 10));
const targetAppIds = Object.keys(targetApps).map((i) => parseInt(i, 10));
const withLeftoverLocks = await Promise.all(
currentAppIds.map((id) => hasLeftoverLocks(id)),
const withLeftoverLocks = Object.fromEntries(
await Promise.all(
currentAppIds.map(
async (id) => [id, await hasLeftoverLocks(id)] as [number, boolean],
),
),
);
const bootTime = getBootTime();