Fixes E_NOTICE for absent 'port' element (#645)

Signed-off-by: Roland Häder <roland@mxchange.org>
pull/646/head
Roland Häder 2018-07-17 01:40:09 +02:00 committed by Hypolite Petovan
parent e74ccf35c9
commit e0145ca216
1 changed files with 1 additions and 1 deletions

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;