randydev commited on
Commit
e88d462
·
verified ·
1 Parent(s): 0f816c4

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +1 -1
index.js CHANGED
@@ -143,7 +143,7 @@ app.post('/v1/generate-key', async (req, res) => {
143
  const existingUser = await collection.findOne({ owner: userIdNumber });
144
 
145
  if (existingUser) {
146
- return res.status(200).json({ apiKey: `API key already: ${existingUser.key}` });
147
  }
148
  const userDocument = {
149
  key: newKey,
 
143
  const existingUser = await collection.findOne({ owner: userIdNumber });
144
 
145
  if (existingUser) {
146
+ return res.status(200).json({ apiKey: existingUser.key });
147
  }
148
  const userDocument = {
149
  key: newKey,