Merge pull request #960 from pixelfed/frontend-ui-refactor

Update Localization cache time, closes #959
This commit is contained in:
daniel 2019-03-05 12:17:58 -07:00 committed by GitHub
commit cdb09b2fb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ class Localization {
public static function languages()
{
return Cache::remember('core:localization:languages', now()->addDays(14), function() {
return Cache::remember('core:localization:languages', now()->addDays(1), function() {
$dir = resource_path('lang');
return Arr::flatten(array_diff(scandir($dir), array('..', '.', 'vendor')));
});