From 6c939f4c2d24e907e4538822d4049341f365f191 Mon Sep 17 00:00:00 2001 From: Graphictoria Date: Tue, 16 Aug 2022 13:51:33 -0400 Subject: [PATCH] BUGFIX - renders will no longer change timestamps lol --- web/app/Models/asset.php | 2 ++ 1 file changed, 2 insertions(+) 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(); }