Fix unfollow in the admin
This commit is contained in:
parent
ffc2700c4f
commit
d5ee0e3fa5
2 changed files with 3 additions and 3 deletions
2
app.py
2
app.py
|
@ -1785,7 +1785,7 @@ def following():
|
|||
abort(404)
|
||||
|
||||
following, older_than, newer_than = paginated_query(DB.activities, q)
|
||||
following = [doc["meta"]["object"] for doc in following]
|
||||
following = [(doc["remote_id"], doc["meta"]["object"]) for doc in following]
|
||||
return render_template(
|
||||
"following.html",
|
||||
following_data=following,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue