From 7905c9b35dff4fc1cf796b46e85c20e62fe050e0 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 13 Dec 2020 12:45:29 +0000 Subject: [PATCH] Only show dormant status if authorized --- webapp_profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp_profile.py b/webapp_profile.py index b8a1eb81..b1651d27 100644 --- a/webapp_profile.py +++ b/webapp_profile.py @@ -743,7 +743,7 @@ def htmlProfileFollowing(translate: {}, baseDir: str, httpPrefix: str, for followingActor in followingJson['orderedItems']: dormant = False - if feedName == 'following': + if authorized and feedName == 'following': dormant = \ isDormant(baseDir, nickname, domain, followingActor, dormantMonths)