mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-16 14:13:55 +00:00
Catch TransferExceptions for HTTPClient::finalUrl() in case the headers are empty
This commit is contained in:
parent
9b5745b75b
commit
b3014ebf06
1 changed files with 7 additions and 1 deletions
|
@ -58,6 +58,7 @@ use Friendica\Model\User;
|
||||||
use Friendica\Protocol\Activity;
|
use Friendica\Protocol\Activity;
|
||||||
use Friendica\Util\DateTimeFormat;
|
use Friendica\Util\DateTimeFormat;
|
||||||
use Friendica\Util\Strings;
|
use Friendica\Util\Strings;
|
||||||
|
use GuzzleHttp\Exception\TransferException;
|
||||||
|
|
||||||
function statusnet_install()
|
function statusnet_install()
|
||||||
{
|
{
|
||||||
|
@ -1426,7 +1427,12 @@ function statusnet_convertmsg(App $a, $body)
|
||||||
|
|
||||||
Logger::log("statusnet_convertmsg: expanding url " . $match[1], Logger::DEBUG);
|
Logger::log("statusnet_convertmsg: expanding url " . $match[1], Logger::DEBUG);
|
||||||
|
|
||||||
$expanded_url = DI::httpClient()->finalUrl($match[1]);
|
try {
|
||||||
|
$expanded_url = DI::httpClient()->finalUrl($match[1]);
|
||||||
|
} catch (TransferException $exception) {
|
||||||
|
Logger::notice('statusnet_convertmsg: Couldn\'t get final URL.', ['url' => $match[2], 'exception' => $exception]);
|
||||||
|
$expanded_url = $match[2];
|
||||||
|
}
|
||||||
|
|
||||||
Logger::log("statusnet_convertmsg: fetching data for " . $expanded_url, Logger::DEBUG);
|
Logger::log("statusnet_convertmsg: fetching data for " . $expanded_url, Logger::DEBUG);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue