Raise maximum on track page limit

This commit is contained in:
Paul Bienkowski 2022-09-16 11:48:05 +02:00
parent 84ab957aa0
commit 6c458a43f6

View file

@ -24,7 +24,7 @@ def normalize_user_agent(user_agent):
async def _return_tracks(req, extend_query, limit, offset):
if limit <= 0 or limit > 100:
if limit <= 0 or limit > 1000:
raise InvalidUsage("invalid limit")
if offset < 0: