forked from indymedia/epicyon
Only show dormant status if authorized
parent
d6e60ff3d3
commit
7905c9b35d
|
@ -743,7 +743,7 @@ def htmlProfileFollowing(translate: {}, baseDir: str, httpPrefix: str,
|
||||||
|
|
||||||
for followingActor in followingJson['orderedItems']:
|
for followingActor in followingJson['orderedItems']:
|
||||||
dormant = False
|
dormant = False
|
||||||
if feedName == 'following':
|
if authorized and feedName == 'following':
|
||||||
dormant = \
|
dormant = \
|
||||||
isDormant(baseDir, nickname, domain, followingActor,
|
isDormant(baseDir, nickname, domain, followingActor,
|
||||||
dormantMonths)
|
dormantMonths)
|
||||||
|
|
Loading…
Reference in New Issue