You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Something Twitter does is that every Profile (except your own) have a field in the Profile Page that is called "Also followed by" where it lists people that you follow that follow this specific user page.
When none of your followings follow that account it displays: "Not followed by anyone you follow"
This is something i miss from Twitter when using Bluesky and i think it would be useful to find some new people followed by your moots or when you find an account followed by that artist you admire.
Describe the solution you'd like
You could iterate the user Following list and take only the handles and check for those handles when the user sees another pages.
When user logs in:
for(int i = 0; i < user.following.size(); i++)
{
follows.push_back(user.following[i].handle.string()); //Follows is the variable we use to store the people User follows further ahead we will use it to compare it with AnotherUser follows.
}
When user access other user page
for(int i = 0; i < anotheruser.following.size(); i++)
{
for(auto& fb : follows)
{
if (anotheruser.following[i].handle.string() == fb)
{
followby.pushback(fb); //Followby is the variable used to display the common followers between User and AnotherUser
}
}
}
Sorry for the bothering and hope this is useful for anyone else.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Something Twitter does is that every Profile (except your own) have a field in the Profile Page that is called "Also followed by" where it lists people that you follow that follow this specific user page.
When none of your followings follow that account it displays: "Not followed by anyone you follow"
This is something i miss from Twitter when using Bluesky and i think it would be useful to find some new people followed by your moots or when you find an account followed by that artist you admire.
Describe the solution you'd like
You could iterate the user Following list and take only the handles and check for those handles when the user sees another pages.
When user logs in:
When user access other user page
Sorry for the bothering and hope this is useful for anyone else.
The text was updated successfully, but these errors were encountered: