Merge pull request #747 from MrPetovan/bug/mastodoncustomemojis-fix-notice
[mastodoncustomemojis] Ensure enoji array keys are set
This commit is contained in:
commit
a8282d143e
|
@ -96,8 +96,10 @@ function mastodoncustomemojis_fetch_custom_emojis_for_url($api_base_url)
|
||||||
|
|
||||||
if (is_array($emojis_array) && count($emojis_array)) {
|
if (is_array($emojis_array) && count($emojis_array)) {
|
||||||
foreach ($emojis_array as $emoji) {
|
foreach ($emojis_array as $emoji) {
|
||||||
$return['texts'][] = ':' . $emoji['shortcode'] . ':';
|
if (!empty($emoji['shortcode']) && !empty($emoji['static_url'])) {
|
||||||
$return['icons'][] = '<img class="emoji mastodon" src="' . ProxyUtils::proxifyUrl($emoji['static_url']) . '" alt=":' . $emoji['shortcode'] . ':" title=":' . $emoji['shortcode'] . ':"/>';
|
$return['texts'][] = ':' . $emoji['shortcode'] . ':';
|
||||||
|
$return['icons'][] = '<img class="emoji mastodon" src="' . ProxyUtils::proxifyUrl($emoji['static_url']) . '" alt=":' . $emoji['shortcode'] . ':" title=":' . $emoji['shortcode'] . ':"/>';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue