BUGFIX - renders will no longer change timestamps lol

This commit is contained in:
Graphictoria 2022-08-16 13:51:33 -04:00
parent 70f2f88394
commit 6c939f4c2d
1 changed files with 2 additions and 0 deletions

View File

@ -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();
}