From efb7ed51ab07b32276ab2e837567093979b07b90 Mon Sep 17 00:00:00 2001 From: themohooks <81331307+themohooks@users.noreply.github.com> Date: Fri, 12 Jul 2024 00:26:43 +0300 Subject: [PATCH] fix -- symbol --- app/Models/Comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Comment.php b/app/Models/Comment.php index 7822148..24ae03f 100644 --- a/app/Models/Comment.php +++ b/app/Models/Comment.php @@ -30,7 +30,7 @@ class Comment { $symb = '+'; } else if ((int)Vote::countcommrates($this->c['id'], -1) < 0) { $commclass = 'con'; - $symb = '-'; + $symb = ''; } else if ((int)Vote::countcommrates($this->c['id'], -1) === 0) { $commclass = ''; }