Fixes E_NOTICE for absent 'port' element

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2018-07-17 01:36:51 +02:00
parent e74ccf35c9
commit ead829acb9
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78

View file

@ -62,7 +62,7 @@ function mastodoncustomemojis_get_custom_emojis_for_author($author_link)
$url_parts = parse_url($author_link);
$api_base_url = $url_parts['scheme'] . '://' . $url_parts['host'] . ($url_parts['port'] ? ':' . $url_parts['port'] : '');
$api_base_url = $url_parts['scheme'] . '://' . $url_parts['host'] . (isset($url_parts['port']) ? ':' . $url_parts['port'] : '');
$cache_key = 'mastodoncustomemojis:' . $api_base_url;