From 3764348b7647320704d61282890286abc0f57467 Mon Sep 17 00:00:00 2001 From: Martin Leyrer Date: Fri, 29 Oct 2021 22:38:25 +0200 Subject: [PATCH] [core] Accept additional "successful" 2xx status codes (#2310) --- lib/contents.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/contents.php b/lib/contents.php index 797c6125..0cf1ab9c 100644 --- a/lib/contents.php +++ b/lib/contents.php @@ -160,7 +160,9 @@ function getContents($url, $header = array(), $opts = array(), $returnHeader = f } switch($errorCode) { - case 200: // Contents received + case 200: // Contents OK + case 201: // Contents Created + case 202: // Contents Accepted Debug::log('New contents received'); $data = substr($data, $headerSize); // Disable caching if the server responds with "Cache-Control: no-cache"