1
0
Fork 0
mirror of synced 2024-06-17 02:04:56 +12:00

fix: output of parse was not being used

This commit is contained in:
Christy Jacob 2021-01-11 19:18:01 +05:30
parent 9c9ca6cc51
commit e03748e74a

View file

@ -257,7 +257,7 @@ class Response extends SwooleResponse
$item = self::getFilter()->parse($output, $model);
}
$this->json($output);
$this->json($item);
}