diff options
author | 2022-05-27 15:25:12 +0200 | |
---|---|---|
committer | 2022-05-27 15:25:12 +0200 | |
commit | cb05cacd6aee5bd43660bde7601f5210515f065c (patch) | |
tree | 5de1dd906fa40022ae0a5e8035b3cbfbbdfa0c52 /lib/contents.php | |
parent | 4d1831260407c2306d6a9474ec3ae378dabd1716 (diff) | |
download | rss-bridge-cb05cacd6aee5bd43660bde7601f5210515f065c.tar.gz rss-bridge-cb05cacd6aee5bd43660bde7601f5210515f065c.tar.zst rss-bridge-cb05cacd6aee5bd43660bde7601f5210515f065c.zip |
fix: add 429 to status codes (#2757)
Diffstat (limited to 'lib/contents.php')
-rw-r--r-- | lib/contents.php | 1 |
1 files changed, 1 insertions, 0 deletions
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', |