mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
Fix bug in response filter
This commit is contained in:
parent
f8fb98d377
commit
bc4a250813
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ class V18 extends Filter
|
|||
protected function parseExecution(array $content)
|
||||
{
|
||||
if($content['status'] === 'completed' && $content['statusCode'] >= 400 && $content['statusCode'] < 500) {
|
||||
$content['status'] === 'failed';
|
||||
$content['status'] = 'failed';
|
||||
}
|
||||
|
||||
unset($content['scheduledAt']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue