mounts: always return message when getting status

This commit is contained in:
Girish Ramakrishnan
2025-11-05 16:38:11 +01:00
parent 2ea7847d4f
commit de84b5113c
5 changed files with 11 additions and 10 deletions

View File

@@ -470,7 +470,7 @@ async function remount(site) {
async function getStatus(site) {
assert.strictEqual(typeof site, 'object');
return await storageApi(site).getStatus(site.config);
return await storageApi(site).getStatus(site.config); // { state, message }
}
async function ensureMounted(site) {