diff --git a/lib/endpoint.php b/lib/endpoint.php index 52abbd2..4a94b8c 100644 --- a/lib/endpoint.php +++ b/lib/endpoint.php @@ -32,6 +32,10 @@ function getEndpoint($endpoint_name): string $output = $output_tmp; $output['Status'] = 'Success'; break; + case 'array': + $output = $output_tmp; + $output['Status'] = 'Success'; + break; case 'bool': $output['Status'] = $output_tmp ? 'Success' : 'Fail'; break;