-
Notifications
You must be signed in to change notification settings - Fork 742
Closed
Labels
WIPWorking in progress.Working in progress.bugBehaviors that do not meet expectation.Behaviors that do not meet expectation.
Milestone
Description
I have a problem with thumbs folder since it's listed along with images.
I saw in the code that this folder shouldn't be listed, but it's.
public function getDirectories($path)
{
$thumb_folder_name = Config::get('lfm.thumb_folder_name');
$all_directories = File::directories(base_path($path));
$arr_dir = [];
foreach ($all_directories as $directory) {
$dir_name = $this->getFileName($directory);
if ($dir_name !== $thumb_folder_name) {
$arr_dir[] = $dir_name;
}
}
return $arr_dir;
}Metadata
Metadata
Assignees
Labels
WIPWorking in progress.Working in progress.bugBehaviors that do not meet expectation.Behaviors that do not meet expectation.
