Fix pagination with offset

This commit is contained in:
Lucidiot 2019-04-26 08:22:52 +02:00
parent 1b659973f4
commit 052a01ae46
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class RawPaginator(object):
:type: dict(str, object)
"""
self.current_offset = 0
self.current_offset = request_kwargs.get('offset', 0)
"""
Offset of the current page; the first index of the item that is
returned in the current page.