fetch_trackers: allow up to 100 ids.

This commit is contained in:
Brian Simpson
2014-03-21 18:31:34 -04:00
parent 691d00d39f
commit 17fcb723fc

View File

@@ -130,7 +130,7 @@ def fetch_trackers():
jsonp_callback = request.args['callback']
ids = request.args.getlist('ids[]')
if len(ids) > 32:
if len(ids) > 100:
abort(400)
hashed = {}