randydev commited on
Commit
ceb20e2
·
verified ·
1 Parent(s): 3f354c6

Update plugins/antiban.js

Browse files
Files changed (1) hide show
  1. plugins/antiban.js +1 -2
plugins/antiban.js CHANGED
@@ -52,8 +52,7 @@ AntibanRoutes.get("/api/v1/user/info", authenticateApiKey, apiLimiter, (req, res
52
  if (!userId) {
53
  return res.status(400).json({ error: "Invalid or missing user_id" });
54
  }
55
-
56
- const result = TelegramUser(userId);
57
  res.json(result);
58
  });
59
 
 
52
  if (!userId) {
53
  return res.status(400).json({ error: "Invalid or missing user_id" });
54
  }
55
+ const result = await TelegramUser(userId);
 
56
  res.json(result);
57
  });
58