From 8ef2803b27e9aa67050db0896994c0a5f846a16d Mon Sep 17 00:00:00 2001 From: wn_ Date: Tue, 9 Jan 2024 12:36:31 +0000 Subject: [PATCH] Only include the exception message in 'UrlHelper::$fetch_last_error'. Before this the stack trace was included, which is a bit much. --- classes/UrlHelper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/UrlHelper.php b/classes/UrlHelper.php index 82b8bf36e..7c426bedf 100644 --- a/classes/UrlHelper.php +++ b/classes/UrlHelper.php @@ -391,12 +391,12 @@ class UrlHelper { $response = $client->request($post_query ? 'POST' : 'GET', $url, $req_options); } catch (\LengthException $ex) { // Either 'Content-Length' indicated the download limit would be exceeded, or the transfer actually exceeded the download limit. - self::$fetch_last_error = (string) $ex; + self::$fetch_last_error = $ex->getMessage(); $span->setAttribute('error', self::$fetch_last_error); $span->end(); return false; } catch (GuzzleHttp\Exception\GuzzleException $ex) { - self::$fetch_last_error = (string) $ex; + self::$fetch_last_error = $ex->getMessage(); if ($ex instanceof GuzzleHttp\Exception\RequestException) { if ($ex instanceof GuzzleHttp\Exception\BadResponseException) {