1
0
Fork 0
mirror of synced 2024-06-28 19:20:25 +12:00

Always set 200 status code to match spec

This commit is contained in:
Jake Barnby 2022-10-13 14:52:08 +13:00
parent 9c372d7335
commit 143c53cb20
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -165,7 +165,9 @@ function executeRequest(
);
$wg->wait();
$response->json($output);
$response
->setStatusCode(Response::STATUS_CODE_OK)
->json($output);
}
/**