diff --git a/src/api/comm.libraryofcode.org/routes/keys.ts b/src/api/comm.libraryofcode.org/routes/keys.ts index 18f34cd..29244f7 100644 --- a/src/api/comm.libraryofcode.org/routes/keys.ts +++ b/src/api/comm.libraryofcode.org/routes/keys.ts @@ -24,20 +24,14 @@ export default class Keys extends Route { const memberDoc = await this.server.client.db.Member.findOne({ userID: req.params.userID }).lean().exec(); const member = this.mainGuild.members.get(req.params.userID); if (!member || !memberDoc || !memberDoc?.x509) return res.status(404).json({ code: this.constants.codes.NOT_FOUND, message: this.constants.messages.NOT_FOUND }); - return res.status(200).json({ - code: this.constants.codes.SUCCESS, - message: memberDoc.x509, - }); + return res.status(200).send(memberDoc.x509); }); this.router.get('/pgp/:userID', async (req, res) => { const memberDoc = await this.server.client.db.Member.findOne({ userID: req.params.userID }).lean().exec(); const member = this.mainGuild.members.get(req.params.userID); if (!member || !memberDoc || !memberDoc?.pgp) return res.status(404).json({ code: this.constants.codes.NOT_FOUND, message: this.constants.messages.NOT_FOUND }); - return res.status(200).json({ - code: this.constants.codes.SUCCESS, - message: memberDoc.pgp, - }); + return res.status(200).send(memberDoc.pgp); }); } }