From 2917fd072af451f17e9e8884663d73f9a56a69c9 Mon Sep 17 00:00:00 2001 From: Jaroslav Drzik Date: Fri, 5 Jul 2024 20:59:40 +0200 Subject: [PATCH] Fix txt files in import --- app/Console/Commands/Import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Import.php b/app/Console/Commands/Import.php index 6d49207..719db97 100644 --- a/app/Console/Commands/Import.php +++ b/app/Console/Commands/Import.php @@ -42,7 +42,7 @@ class Import extends Command $dir = $this->argument('dir'); - $files = File::glob($dir . '/*.js'); + $files = File::glob($dir . '/*.txt'); $this->question('Which file to import?'); $i = 1;