Use getter function

This commit is contained in:
Michael 2021-10-31 05:31:58 +00:00
parent 2d098b3fc8
commit 3ca1cd3345
1 changed files with 2 additions and 2 deletions

View File

@ -386,11 +386,11 @@ function api_call(App $a, App\Arguments $args = null)
*/
function api_error($type, $e, App\Arguments $args)
{
$error = ($e->getMessage() !== "" ? $e->getMessage() : $e->httpdesc);
$error = ($e->getMessage() !== "" ? $e->getMessage() : $e->getDescription());
/// @TODO: https://dev.twitter.com/overview/api/response-codes
$error = ["error" => $error,
"code" => $e->getCode() . " " . $e->httpdesc,
"code" => $e->getCode() . " " . $e->getDescription(),
"request" => $args->getQueryString()];
$return = api_format_data('status', $type, ['status' => $error]);