This commit is contained in:
2025-12-18 15:39:42 +08:00
parent 2f02c5af12
commit f89e8106f5
+1 -1
View File
@@ -37,7 +37,7 @@ class Scanner extends Component
public function load_directory(string $path): void
{
$dir = new \DirectoryIterator($path);
$skip = \config('scanner.skip', []);
$skip = \config('site.scanner.skip', []);
foreach ($dir as $value) {
if ($value->isDot() || str_starts_with($value->getFilename(), '.')) {
continue;