Allow follow(er) lists to be acessible by account owner even if follower counts are disabled #246
No reviewers
Labels
No labels
a11y
Bug
Bug fix
Critical Priority
Documentation
Feature
Feature request
Held for next release cycle
High Priority
Low Priority
Medium Priority
Minor change
Translation/Locale
WIP
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: AkkomaGang/akkoma-fe#246
Loading…
Reference in a new issue
No description provided.
Delete branch "Beefox/fox-fe:fix-allow-follow-list"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently, if a user has their follower/follow counts hidden, they cannot access their own list of followers/follows. This makes no real sense and means that they cannot modify those lists without disabling their privacy options.
This fix simply allows those tabs to be accessed no matter if the counts are hidden or not.
i think a more intuitive solution UX-wise (and maybe security-wise too?) would be to still hide those tabs to those who aren't supposed to access them, but allow the user to see them:
of course check that this code works but yeah
The tabs are already hidden by other code based on your settings for if the follower lists are visible or not, via the line
v-if="followsTabVisible"
When you have follow counts disabled, they aren't hidden, just disabled. you can still access the page with the correct link and still need to be the correct user,there is no security to disabling the buttons nor logic :p
seems good to me! thanks