mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Always set 200 status code to match spec
This commit is contained in:
parent
9c372d7335
commit
143c53cb20
1 changed files with 3 additions and 1 deletions
|
|
@ -165,7 +165,9 @@ function executeRequest(
|
|||
);
|
||||
$wg->wait();
|
||||
|
||||
$response->json($output);
|
||||
$response
|
||||
->setStatusCode(Response::STATUS_CODE_OK)
|
||||
->json($output);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue