Fixed wrong index ..

This commit is contained in:
Philipp Holzer 2021-08-29 14:26:05 +02:00
parent b3014ebf06
commit c06fff6921
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 2 additions and 2 deletions

View File

@ -1430,8 +1430,8 @@ function statusnet_convertmsg(App $a, $body)
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::notice('statusnet_convertmsg: Couldn\'t get final URL.', ['url' => $match[1], 'exception' => $exception]);
$expanded_url = $match[1];
}
Logger::log("statusnet_convertmsg: fetching data for " . $expanded_url, Logger::DEBUG);