Move "HTTPRequest::finalUrl" dynamic

This commit is contained in:
nupplaPhil 2020-03-04 22:33:31 +01:00 committed by Hypolite Petovan
parent f36ca4fcf4
commit 90193bd02b
2 changed files with 2 additions and 2 deletions

View File

@ -1449,7 +1449,7 @@ function statusnet_convertmsg(App $a, $body)
Logger::log("statusnet_convertmsg: expanding url " . $match[1], Logger::DEBUG);
$expanded_url = HTTPRequest::finalUrl($match[1]);
$expanded_url = DI::httpRequest()->finalUrl($match[1]);
Logger::log("statusnet_convertmsg: fetching data for " . $expanded_url, Logger::DEBUG);

View File

@ -1296,7 +1296,7 @@ function twitter_expand_entities($body, stdClass $status, $picture)
$expanded_url = $url->expanded_url;
$final_url = HTTPRequest::finalUrl($url->expanded_url);
$final_url = DI::httpRequest()->finalUrl($url->expanded_url);
$oembed_data = OEmbed::fetchURL($final_url);