summaryrefslogtreecommitdiffstats
path: root/activities/views/search.py
diff options
context:
space:
mode:
Diffstat (limited to 'activities/views/search.py')
-rw-r--r--activities/views/search.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/activities/views/search.py b/activities/views/search.py
index ab37e17..ccfc1a4 100644
--- a/activities/views/search.py
+++ b/activities/views/search.py
@@ -101,11 +101,7 @@ class Search(FormView):
# Try and retrieve the post by URI
# (we do not trust the JSON we just got - fetch from source!)
try:
- post = Post.by_object_uri(document["id"], fetch=True)
- # We may need to live-fetch the identity too
- if post.author.state == IdentityStates.outdated:
- async_to_sync(post.author.fetch_actor)()
- return post
+ return Post.by_object_uri(document["id"], fetch=True)
except Post.DoesNotExist:
return None