summary refs log tree commit diff
path: root/api/src/Server.ts
diff options
context:
space:
mode:
authorSamuel <34555296+Flam3rboy@users.noreply.github.com>2021-10-15 18:39:57 +0200
committerGitHub <noreply@github.com>2021-10-15 18:39:57 +0200
commit1bbf789a7eb54e19459931d3928db1e34472f6d2 (patch)
tree4ac117b32e6b6c8d2c380e552597e6caad70294d /api/src/Server.ts
parentMerge pull request #462 from hbjydev/unit-tests-expanded (diff)
parent:sparkles: sticker events (diff)
downloadserver-1bbf789a7eb54e19459931d3928db1e34472f6d2.tar.xz
Merge pull request #455 from fosscord/sticker
Stickers
Diffstat (limited to 'api/src/Server.ts')
-rw-r--r--api/src/Server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/Server.ts b/api/src/Server.ts

index 1f11a295..a6887fd4 100644 --- a/api/src/Server.ts +++ b/api/src/Server.ts
@@ -78,7 +78,7 @@ export class FosscordServer extends Server { api.use("*", (error: any, req: Request, res: Response, next: NextFunction) => { if (error) return next(error); res.status(404).json({ - message: "404: Not Found", + message: "404 endpoint not found", code: 0 }); next();