diff --git a/app/Browser/Jobs/InstagramRepost/InstagramRepostJob.php b/app/Browser/Jobs/InstagramRepost/InstagramRepostJob.php index 9757f78..3054175 100644 --- a/app/Browser/Jobs/InstagramRepost/InstagramRepostJob.php +++ b/app/Browser/Jobs/InstagramRepost/InstagramRepostJob.php @@ -187,12 +187,12 @@ class InstagramRepostJob extends BrowserJob implements ShouldBeUniqueUntilProces dump($e->getMessage()); } finally { // Removes all videos in the download folder - $files = glob($this->downloadFolder . '*'); // Get all files in the download folder - foreach ($files as $file) { - if (is_file($file)) { - unlink($file); // Delete the file - } - } + // $files = glob($this->downloadFolder . '*'); // Get all files in the download folder + // foreach ($files as $file) { + // if (is_file($file)) { + // unlink($file); // Delete the file + // } + // } } }