diff --git a/brutaldon/views.py b/brutaldon/views.py index d560317..5674657 100644 --- a/brutaldon/views.py +++ b/brutaldon/views.py @@ -287,7 +287,7 @@ def user(request, username, prev=None, next=None): user_dict = mastodon.account_search(username)[0] except IndexError: raise Http404("The user %s could not be found." % username) - data = mastodon.account_statuses(user_dict.id, max_id=prev, since_id=next) + data = mastodon.account_statuses(user_dict.id, max_id=next, since_id=prev) relationship = mastodon.account_relationships(user_dict.id)[0] try: prev = data[0]._pagination_prev