From eea48dda1cb0fd3bdc72273576567b4fe6566fee Mon Sep 17 00:00:00 2001
From: Lynne <lynne@bune.city>
Date: Tue, 10 Mar 2020 14:33:26 +1000
Subject: [PATCH] fixed an error causing pleroma to always fail

---
 main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.py b/main.py
index f2a536f..a0be688 100755
--- a/main.py
+++ b/main.py
@@ -193,7 +193,7 @@ for f in following:
 		sys.exit(1)
 
 	pleroma = False
-	if 'next' not in j and 'prev' in j:
+	if 'next' not in j:
 		print("Using Pleroma compatibility mode")
 		pleroma = True
 		j = j['first']