From 6162893a8a13a36c9f9259fef83224d07b998bbd Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Wed, 2 Jan 2019 18:44:47 +0100 Subject: [PATCH] fix(core): update --- ts/smartstatus.classes.http.4xx.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/smartstatus.classes.http.4xx.ts b/ts/smartstatus.classes.http.4xx.ts index 6253266..0e4e445 100644 --- a/ts/smartstatus.classes.http.4xx.ts +++ b/ts/smartstatus.classes.http.4xx.ts @@ -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.` });