Bugfix following page

This commit is contained in:
Thomas Sileo
2018-07-11 20:27:16 +02:00
parent 1adeee308f
commit d6d20a972e
2 changed files with 4 additions and 4 deletions

2
app.py
View File

@@ -1569,7 +1569,7 @@ def following():
)
following, older_than, newer_than = paginated_query(DB.activities, q)
following = [get_backend.fetch_iri(doc["activity"]["object"]) for doc in following]
following = [get_backend().fetch_iri(doc["activity"]["object"]) for doc in following]
return render_template(
"following.html",
following_data=following,