-
Notifications
You must be signed in to change notification settings - Fork 554
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decompose "follow" into "follow request" and "allowed follow" #1352
Comments
I think this is a good proposal. I don't know how it works at the protocol level, but in Pleroma (activitypub) I have the option to make someone unfollow me directly, from their profile page, without having to do the soft-block dance. I think this is a cleaner UX, but having the block-causes-unfollow mechanic is also still a good thing. (and this proposal could enable both/either) |
One question mark is, how would "default yes" mode work? The follower has no mechanism to directly notify the followee's PDS (assuming they're different PDSes). I'd suggest that there be some AppView API to list pending follow requests. In default-yes mode, the client would request this list periodically, and create the required "allowed follow" records as necessary. This would mean that you can't follow someone on another PDS while they're offline. (but I suppose if they're offline, they're also not posting anything, so there is nothing from them to see in your following timeline anyway) |
That sounds reasonable. Perhaps you can set follow intent and navigate away, but it will show it with some form of "in progress" marker until the followed PDS is online again. |
This is a protocol discussion, so I'm going to transfer this issue to https://github.com/bluesky-social/atproto |
I might be missing something but I think that it would be confusing for users. |
The effects of blocking mechanics are not enforced by PDSes, they're enforced by AppViews. It might be confusing for twitter users, but it is very familiar to fediverse users - post visibility and follow approval are distinct controls there. It's down to the client UI/UX to make sure users understand what's actually going on. |
If we were to allow some mechanic similar to a soft-block - this would be it However this somewhat substantially increases the complexity of follows & as @DavidBuchanan314 points out, requires some trickier data flows - either a PDS now has to be notified of another PDS's behavior so it can auto-approve it, or we have to do something smart with AppViews & clients. I'm not sure the feature is worth the complexity. I also don't see this feature as being core to the public broadcast social mode. "soft-blocks" - tho used as a feature - are more of a quirk of Twitter's particular implementation. At the end of the day, following or not, you can easily view the user's posts. Many feeds may not even take follows into account when serving content. |
The idea of bidirectional on-the-record expressions-of-intent seems beneficial & perhaps even necessary in an open/decentralized system. I'd suggest more-neutral language than 'allowed', though, which implies more enforcement than may be realistic in actual public spaces. For example, a controversial public official who declares that a reporter's "follow-request" is "not-allowed" can, should, and will have their intent ignored. I'd even suggest softening 'request' to be less about a step/transition than about a state-of-world: "follow-desired". It's then still a true-declaration by its issuer, even if overridden/limited by other declarations/politeness/whatever, or if its effects vary by time/others-actions. |
Another way to do soft-blocks is simply to create a soft-block record. Rather than requiring bi-directional confirmation of a follow, you default to allow but enable the target of a follow to publish a denial of the follow. @gojomo One way to diversify the ruleset around an account is to establish sets of flags which distinguish their role of operation. Without committing or even suggesting support for this particular idea, one can imagine a process for marking certain accounts as "public figures" who are not able to deny follows. |
Brazilian cluster is requesting this, as it enables harassment or reliving trauma. #1399 may be a temporary client solution |
I think the main purpose of soft-blocking on twitter isn't really about preventing people from seeing your posts but more so about breaking a mutual follow without having to awkwardly @ the person and go "hey can you unfollow me i dont wanna be mutuals with you anymore" A lot of people on twitter have "soft-block if you unfollow" in their bios or carrds for that reason. I think it'd be nice to be able to do that on bluesky somehow. |
Some option to not allow an account to follow me if they are also following more than Y accounts. For one reason is that an account who is following more than 20,000 seems to be a bot attempting to harvest me. |
|
For me as a user, they are two separate features that don't have to be tied together. The option to remove a follower. I don't mind that they see my posts (otherwise I would block them), but I don't want them to be part of my follower list (and count) – for whatever reason. (#1160) The option to have to approve follower requests. I don't think it would be confusing. It would be a setting in my preferences, and it would work like facebook's friend requests (with the difference that I wouldn't automatically follow them back), the options would be accept/ignore/block.
In my opinion, that would not be confusing. If I don't want my posts to be public, I'll make my account private (#1155 ) - where you'll need some sort of approval mechanism anyway. PS: I like how you phrase it in the blog: "our overall design philosophy: give users sensible defaults but leave them the option to fully customize their experience if they don’t like our choices." |
Sadly, this seems to be needed https://bsky.app/profile/carlbergstrom.com/post/3k5hwytzr762g |
i wonder. usually softblockings are not something that's permanent, some don't mind being refollowed (cleanup reasons?) so how would record publish/depub automation work? i'm assuming appview magic, but that kind of turns these kinds of record into some kind of transient state keeping |
Is your feature request related to a problem? Please describe.
Currently, blocking does not remove a follow, because follow is a property solely of the following account. This means that blocking does not break the follow, breaking an expectation that Twitter built ("soft-blocking"), because one user cannot change another's account.
Describe the solution you'd like
Make following a two-phase process: follower makes a follow-request, and followed makes a follow-accept (which can be user configurable as default-yes or ask). Either being removed breaks the relationship unilaterally. Blocking removes your follow-accept or follow-request as part of the action.
The text was updated successfully, but these errors were encountered: