Merge pull request #27329 from nextcloud/propagate-throttle-state-for-baseresponse
Propagate throttling on OCS response
This commit is contained in:
commit
5438e00276
|
@ -75,6 +75,11 @@ abstract class BaseResponse extends Response {
|
||||||
$this->setLastModified($dataResponse->getLastModified());
|
$this->setLastModified($dataResponse->getLastModified());
|
||||||
$this->setCookies($dataResponse->getCookies());
|
$this->setCookies($dataResponse->getCookies());
|
||||||
|
|
||||||
|
if ($dataResponse->isThrottled()) {
|
||||||
|
$throttleMetadata = $dataResponse->getThrottleMetadata();
|
||||||
|
$this->throttle($throttleMetadata);
|
||||||
|
}
|
||||||
|
|
||||||
if ($format === 'json') {
|
if ($format === 'json') {
|
||||||
$this->addHeader(
|
$this->addHeader(
|
||||||
'Content-Type', 'application/json; charset=utf-8'
|
'Content-Type', 'application/json; charset=utf-8'
|
||||||
|
|
Loading…
Reference in New Issue