db: Fix the db app, and show a message instead of an ugly error when you're not signed in.

This commit is contained in:
2024-10-29 20:19:50 -04:00
parent ef844fbccb
commit 77ff8cef1f
3 changed files with 20 additions and 6 deletions

View File

@ -716,12 +716,12 @@ async function getProcessBlob(blobId, key, options) {
Object.keys(db).map((x) => [x, db[x].bind(db)])
);
};
imports.databases = function () {
imports.databases = async function () {
return [].concat(
databases.list(
await databases.list(
':shared:' + process.credentials.session.name + ':%'
),
databases.list(process.credentials.session.name + ':%')
await databases.list(process.credentials.session.name + ':%')
);
};
}