aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mastodon/Mastodon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index 4774761..ed8901c 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -853,7 +853,7 @@ class Mastodon:
853 853
854 Returns the previous page or None if no further data is available. 854 Returns the previous page or None if no further data is available.
855 """ 855 """
856 if isinstance(next_page, list) and len(previous_page) != 0: 856 if isinstance(next_page, list) and len(next_page) != 0:
857 if '_pagination_prev' in next_page[0]: 857 if '_pagination_prev' in next_page[0]:
858 params = copy.deepcopy(next_page[0]['_pagination_prev']) 858 params = copy.deepcopy(next_page[0]['_pagination_prev'])
859 else: 859 else:
Powered by cgit v1.2.3 (git 2.41.0)