From cb05cacd6aee5bd43660bde7601f5210515f065c Mon Sep 17 00:00:00 2001 From: Dag Date: Fri, 27 May 2022 15:25:12 +0200 Subject: [PATCH] fix: add 429 to status codes (#2757) --- lib/contents.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/contents.php b/lib/contents.php index 3074bd72..304d394e 100644 --- a/lib/contents.php +++ b/lib/contents.php @@ -36,6 +36,7 @@ const RSSBRIDGE_HTTP_STATUS_CODES = [ '415' => 'Unsupported Media Type', '416' => 'Requested Range Not Satisfiable', '417' => 'Expectation Failed', + '429' => 'Too Many Requests', '500' => 'Internal Server Error', '501' => 'Not Implemented', '502' => 'Bad Gateway',