Use dot notation

This commit is contained in:
syuilo 2018-04-01 16:04:23 +09:00
parent a733e78880
commit 13949270d2

View file

@ -19,7 +19,7 @@ app.get('/@:user/inbox', async (req, res) => {
const user = await User.findOne({
host: { $ne: null },
account: { publicKey: { id: parsed.keyId } }
'account.publicKey.id': parsed.keyId
});
if (user === null) {