summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwn_ <[email protected]>2024-01-09 12:36:31 +0000
committerwn_ <[email protected]>2024-01-09 12:38:32 +0000
commit8ef2803b27e9aa67050db0896994c0a5f846a16d (patch)
tree0f66c28bb428f6db11ed2f465c6d442e7fe1f50d
parentf0f22c23c5986d8f21f82e4a8203a164a5c4aace (diff)
Only include the exception message in 'UrlHelper::$fetch_last_error'.
Before this the stack trace was included, which is a bit much.
-rw-r--r--classes/UrlHelper.php4
1 files 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) {