Skip to content

Commit

Permalink
core: correct page_size value #216
Browse files Browse the repository at this point in the history
  • Loading branch information
oczkers committed Nov 17, 2016
1 parent 64fccb4 commit d966230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fut/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ def searchAuctions(self, ctype, level=None, category=None, assetId=None, defId=N
# TODO: add "search" alias
# TODO: generator
if start > 0 and page_size == 16:
page_size = 13
page_size = 12
elif page_size > 50: # server restriction
page_size = 50
params = {
Expand Down

0 comments on commit d966230

Please sign in to comment.