mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 22:41:27 +00:00
Merge pull request #960 from pixelfed/frontend-ui-refactor
Update Localization cache time, closes #959
This commit is contained in:
commit
cdb09b2fb0
1 changed files with 1 additions and 1 deletions
|
@ -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')));
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue