This commit is contained in:
Jan Prochazka 2021-12-30 11:04:26 +01:00
parent c2e652adfc
commit ed616130b8
2 changed files with 2 additions and 1 deletions

View File

@ -214,7 +214,7 @@ module.exports = {
get_meta: true,
async get({ conid }) {
if (portalConnections) return portalConnections.find(x => x._id == conid);
if (portalConnections) return portalConnections.find(x => x._id == conid) || null;
const res = await this.datastore.find({ _id: conid });
return res[0] || null;
},

View File

@ -252,6 +252,7 @@ module.exports = {
serverVersion_meta: true,
async serverVersion({ conid, database }) {
if (!conid) return null;
const opened = await this.ensureOpened(conid, database);
return opened.serverVersion || null;
},