Fix typo Received Ping

This commit is contained in:
advplyr 2022-07-30 08:37:35 -05:00
parent a8c7905f6d
commit ed23feaf3f

View File

@ -252,7 +252,7 @@ class Server {
res.json(payload)
})
app.get('/ping', (req, res) => {
Logger.info('Recieved ping')
Logger.info('Received ping')
res.json({ success: true })
})
app.get('/healthcheck', (req, res) => res.sendStatus(200))