From: Daniel Karbach Date: Fri, 21 Nov 2025 16:49:56 +0000 (+0100) Subject: hide vod with results X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=814cf475b8bff957532faf92a3b2391cdd4058b3;p=alttp.git hide vod with results --- diff --git a/app/Models/Result.php b/app/Models/Result.php index ab9f49f..7a2d7f1 100644 --- a/app/Models/Result.php +++ b/app/Models/Result.php @@ -70,7 +70,7 @@ class Result extends Model public function hideResult(User $user = null) { if (!$user || $this->user_id != $user->id) { - $this->makeHidden(['forfeit', 'placement', 'score', 'time']); + $this->makeHidden(['forfeit', 'placement', 'score', 'time', 'vod']); } else { $this->makeHidden(['placement', 'score']); }