forgot "can't" in string

This commit is contained in:
guillaume91 2024-06-26 14:52:28 +02:00
parent f5925ed758
commit 92f53cfc1b

View file

@ -58,7 +58,7 @@ public static function fromDate(Project $project,Carbon $date,int $offset = 1):N
{ {
$filename = $date->format('Y-m-d') . '.tif'; $filename = $date->format('Y-m-d') . '.tif';
if ($project->downloads()->statusSuccess()->where(['name' => $filename])->exists()) { 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 NullJob();
} }
return new self($project,$date,$offset); return new self($project,$date,$offset);