Merge pull request 'Tumblr: Use the UUID to address the blog' (#1367) from heluecht/friendica-addons:tumblr-blog into 2023.03-rc

Reviewed-on: #1367
This commit is contained in:
Hypolite Petovan 2023-04-09 06:56:18 +02:00
commit 91bb323a16
1 changed files with 1 additions and 4 deletions

View File

@ -25,7 +25,6 @@ use Friendica\Util\Network;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Psr7\Uri as Uri;
use GuzzleHttp\Subscriber\Oauth\Oauth1;
function tumblr_install()
@ -229,9 +228,7 @@ function tumblr_settings(array &$data)
$userinfo = tumblr_get($connection, 'user/info');
if (!empty($userinfo['success'])) {
foreach ($userinfo['data']->response->user->blogs as $blog) {
$uri = new Uri($blog->url);
$url = trim($uri->getHost() . $uri->getPath(), '/');
$blogs[$url] = $url;
$blogs[$blog->uuid] = $blog->name;
}
}