fix: index

This commit is contained in:
手瓜一十雪 2024-11-21 11:25:06 +08:00
parent e898915d01
commit 8edbe54456

View File

@ -99,7 +99,11 @@ export class OB11PassiveHttpAdapter implements IOB11NetworkAdapter {
} else if (req.query) {
payload = { ...req.query, ...req.body };
}
if (req.path === '' || req.path === '/') {
const hello = OB11Response.ok({});
hello.message = 'NapCat4 Ss Running';
return res.json(hello)
}
const actionName = req.path.split('/')[1];
const action = this.actions.get(actionName);
if (action) {