From 0271be92567c8409d1bbc34f8dc9d44a7a4e6139 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Fri, 24 Jan 2025 13:58:22 -0500 Subject: [PATCH] following yourself no longer boosts rank --- docs/stats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/stats.php b/docs/stats.php index 579a978..dfbf45a 100755 --- a/docs/stats.php +++ b/docs/stats.php @@ -27,7 +27,7 @@ $followers = $stmt->fetchAll(PDO::FETCH_DEFAULT); foreach ($followers as $follown) { - if ($usern == $follown['target']) continue; + if ($usern['username'] == $follown['target']) continue; $pr[$usern['username']] += $pr[$follown['target']] / 10; }