From c3b9d91ce7b3b5db95f6cb8f6a2065316a6e6b19 Mon Sep 17 00:00:00 2001 From: Lynnesbian Date: Tue, 10 Mar 2020 16:59:29 +1000 Subject: [PATCH] fix another dumb mistake that broke pleroma --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 0d296b2..01fc00d 100755 --- a/main.py +++ b/main.py @@ -200,7 +200,7 @@ for f in following: if 'next' not in j and 'prev' not in j: # there's only one page of results, don't bother doing anything special pass - elif 'next' not in j: + elif 'prev' not in j: print("Using Pleroma compatibility mode") pleroma = True j = j['first']