This commit is contained in:
Christopher Cookman 2026-01-25 15:23:44 -07:00
parent 4dbdad15a2
commit a56d20c21b

View file

@ -12,7 +12,7 @@ router.get("/", global.auth, async (req, res) => {
});
});
router.get("/:serverId", global.auth, async (req, res) => {
router.get("/server/:serverId", global.auth, async (req, res) => {
const serverId = req.params.serverId;
db.get("SELECT * FROM analytics WHERE id = ?", [serverId], (err, row) => {
if (err) {