diff --git a/web/app/Models/asset.php b/web/app/Models/asset.php index 287fe26..00f9df6 100644 --- a/web/app/Models/asset.php +++ b/web/app/Models/asset.php @@ -153,12 +153,14 @@ class Asset extends Model public function set2DHash($hash) { $this->thumbnail2DHash = $hash; + $this->timestamps = false; $this->save(); } public function set3DHash($hash) { $this->thumbnail3DHash = $hash; + $this->timestamps = false; $this->save(); }