summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/views/users.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/askbot/views/users.py b/askbot/views/users.py
index 0997f21e..19613838 100644
--- a/askbot/views/users.py
+++ b/askbot/views/users.py
@@ -655,7 +655,8 @@ def user_responses(request, user, context):
#3) "package" data for the output
response_list = list()
for memo in memo_set:
- #a monster query chain below
+ if memo.activity.content_object is None:
+ continue#a temp plug due to bug in the comment deletion
response = {
'id': memo.id,
'timestamp': memo.activity.active_at,