Updated dependencies

This commit is contained in:
2025-07-26 03:56:40 +10:00
parent 2e8c3f98ca
commit 496048f62b
3 changed files with 782 additions and 619 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ app.use('/admin', require('./admin'));
require('./chat')(io.of('/chat'));
//error on access
app.get('*', (req, res) => {
app.get('/{*any}', (req, res) => {
res.redirect('https://github.com/krgamestudios/chat-server');
});