From 92f53cfc1b667c64e1868e97698986bcd1c0f6cb Mon Sep 17 00:00:00 2001 From: guillaume91 Date: Wed, 26 Jun 2024 14:52:28 +0200 Subject: [PATCH] forgot "can't" in string --- laravel_app/app/Jobs/ProjectDownloadRDSJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel_app/app/Jobs/ProjectDownloadRDSJob.php b/laravel_app/app/Jobs/ProjectDownloadRDSJob.php index 2a1d7b7..e098c45 100644 --- a/laravel_app/app/Jobs/ProjectDownloadRDSJob.php +++ b/laravel_app/app/Jobs/ProjectDownloadRDSJob.php @@ -58,7 +58,7 @@ public static function fromDate(Project $project,Carbon $date,int $offset = 1):N { $filename = $date->format('Y-m-d') . '.tif'; if ($project->downloads()->statusSuccess()->where(['name' => $filename])->exists()) { - Log::warning("The download $filename can be processed. Please check it's status."); + Log::warning("The download $filename can't be processed. Please check it's status."); return new NullJob(); } return new self($project,$date,$offset);