Update server.js

This commit is contained in:
John Parkhurst 2026-01-19 15:23:39 -05:00
parent 9847a7271e
commit 1fc6b5a30c

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.3');
res.json('1.0.4');
} catch (err) {
console.error(err);
res.status(500).json({ connected: false, error: err.message });