[mastodoncustomemojis] Ensure enoji array keys are set

This commit is contained in:
Hypolite Petovan 2018-10-12 08:53:43 -04:00
parent 9c275a4185
commit 39bb3ed6eb
1 changed files with 4 additions and 2 deletions

View File

@ -96,11 +96,13 @@ function mastodoncustomemojis_fetch_custom_emojis_for_url($api_base_url)
if (is_array($emojis_array) && count($emojis_array)) {
foreach ($emojis_array as $emoji) {
if (!empty($emoji['shortcode']) && !empty($emoji['static_url'])) {
$return['texts'][] = ':' . $emoji['shortcode'] . ':';
$return['icons'][] = '<img class="emoji mastodon" src="' . ProxyUtils::proxifyUrl($emoji['static_url']) . '" alt=":' . $emoji['shortcode'] . ':" title=":' . $emoji['shortcode'] . ':"/>';
}
}
}
}
return $return;
}