diff --git a/app/Uploads/ImageRepo.php b/app/Uploads/ImageRepo.php index cdd5485ac..5507933f3 100644 --- a/app/Uploads/ImageRepo.php +++ b/app/Uploads/ImageRepo.php @@ -177,6 +177,7 @@ class ImageRepo $image->refresh(); $image->updated_by = user()->id; + $image->touch(); $image->save(); $this->imageService->replaceExistingFromUpload($image->path, $image->type, $file); $this->loadThumbs($image, true); diff --git a/tests/Uploads/ImageTest.php b/tests/Uploads/ImageTest.php index f9cc419a4..a9684eef7 100644 --- a/tests/Uploads/ImageTest.php +++ b/tests/Uploads/ImageTest.php @@ -104,11 +104,18 @@ class ImageTest extends TestCase $this->assertFileEquals($this->files->testFilePath('test-image.png'), public_path($relPath)); $imageId = $imgDetails['response']->id; + $image = Image::findOrFail($imageId); + $image->updated_at = now()->subMonth(); + $image->save(); + $this->call('PUT', "/images/{$imageId}/file", [], [], ['file' => $newUpload]) ->assertOk(); $this->assertFileEquals($this->files->testFilePath('compressed.png'), public_path($relPath)); + $image->refresh(); + $this->assertTrue($image->updated_at->gt(now()->subMinute())); + $this->files->deleteAtRelativePath($relPath); }