Skip to content

Commit

Permalink
Increment the number of posts to show in the explore tab
Browse files Browse the repository at this point in the history
  • Loading branch information
yabirgb committed Feb 16, 2019
1 parent 0310f17 commit e7557e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/v1/explore.py
Expand Up @@ -18,7 +18,7 @@ class ExploreStatuses(BaseHandler):

async def get(self):

query = await self.application.objects.execute(Status.select().where(Status.in_reply_to==None).limit(15))
query = await self.application.objects.execute(Status.select().where(Status.in_reply_to==None).limit(33))

data = [n.to_json() for n in query]

Expand Down

0 comments on commit e7557e0

Please sign in to comment.