remount() needs a backupSite object

This commit is contained in:
Johannes Zellner
2025-10-06 11:10:08 +02:00
parent ca96e40397
commit 72c97ba224

View File

@@ -476,7 +476,7 @@ async function ensureMounted(site) {
const status = await getStatus(site);
if (status.state === 'active') return status;
await remount();
await remount(site);
return await getStatus(site);
}