Skip to content

Commit 7f034ad

Browse files
[Mailer] fix tests
1 parent 4e6a8b2 commit 7f034ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Transport/AbstractHttpTransport.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ protected function doSend(SentMessage $message): void
4747
$response = null;
4848
try {
4949
$response = $this->doSendHttp($message);
50-
$message->appendDebug($response->getInfo('debug'));
50+
$message->appendDebug($response->getInfo('debug') ?? '');
5151
} catch (HttpTransportException $e) {
52-
$e->appendDebug($e->getResponse()->getInfo('debug'));
52+
$e->appendDebug($e->getResponse()->getInfo('debug') ?? '');
5353

5454
throw $e;
5555
}

0 commit comments

Comments
 (0)