Skip to content
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

offset and count limiting in get_people_i_follow() and get_my_followers() is wrong. #6

Open
abeld opened this issue Jul 17, 2011 · 0 comments

Comments

@abeld
Copy link

abeld commented Jul 17, 2011

It has:

followers =  ActivityFollower.objects.filter(from_user=user).all()[offset:count]

etc., which should be:

 followers =  ActivityFollower.objects.filter(from_user=user).all()[offset:offset+count]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant