[mastodoncustomemojis] Reduce cache TTL to prevent raw emojis display #724

Merged
MrPetovan merged 1 commit from bug/mastodoncustomemojis-reduce-cache-ttl into 2018.08-rc 2018-08-30 07:36:04 +02:00

View file

@ -77,7 +77,7 @@ function mastodoncustomemojis_get_custom_emojis_for_author($author_link)
if (empty($return) || Config::get('system', 'ignore_cache')) { if (empty($return) || Config::get('system', 'ignore_cache')) {
$return = mastodoncustomemojis_fetch_custom_emojis_for_url($api_base_url); $return = mastodoncustomemojis_fetch_custom_emojis_for_url($api_base_url);
Cache::set($cache_key, $return, empty($return['texts']) ? Cache::HALF_HOUR : Cache::WEEK); Cache::set($cache_key, $return, empty($return['texts']) ? Cache::QUARTER_HOUR : Cache::HOUR);
} }
return $return; return $return;