fix(core): update

This commit is contained in:
Philipp Kunz 2019-01-02 18:44:47 +01:00
parent 261de8c19d
commit 6162893a8a

View File

@ -64,7 +64,7 @@ HttpStatus.addStatus('404', Status404);
export class Status429 extends HttpStatus {
constructor() {
super({
code: 404,
code: 429,
text: 'Too Many Requests',
description: `The user has sent too many requests in a given amount of time. Intended for use with rate-limiting schemes.`
});