aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tpblite/models/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tpblite/models/utils.py b/tpblite/models/utils.py
index c6b6248..dd03b55 100644
--- a/tpblite/models/utils.py
+++ b/tpblite/models/utils.py
@@ -38,6 +38,7 @@ class QueryParser:
@classmethod
def browse(cls, base_url: str, category: int, page: int, order: int) -> T:
+ # The 0 is added to the URL to stay consistent with the manual web request
segments = ("browse", str(category), str(page), str(order), "0")
return cls(base_url, segments)