Update server.js

This commit is contained in:
John Parkhurst 2026-01-19 00:40:06 -05:00
parent 6e4a2f56cc
commit ecce459d71

View file

@ -47,7 +47,7 @@ app.get('/api/db-health', async (req, res) => {
});
app.get('/api/version', async (req, res) => {
try {
res.json('1.0.2');
res.json('1.0.3');
} catch (err) {
console.error(err);
res.status(500).json({ connected: false, error: err.message });