fixed an error causing pleroma to always fail

This commit is contained in:
Lynne 2020-03-10 14:33:26 +10:00
parent 1c8b86543b
commit eea48dda1c
No known key found for this signature in database
GPG Key ID: F0A184B5213D9F90
1 changed files with 1 additions and 1 deletions

View File

@ -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']