summaryrefslogtreecommitdiffstats
path: root/askbot/models/content.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/models/content.py')
-rw-r--r--askbot/models/content.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/models/content.py b/askbot/models/content.py
index 5ebcb7e3..eaba4fd6 100644
--- a/askbot/models/content.py
+++ b/askbot/models/content.py
@@ -222,7 +222,7 @@ class Content(models.Model):
if user.tag_filter_setting == 'interesting':
#at least some of the tags must be marked interesting
- interesting_selections = user.tag_selections.exists(
+ interesting_selections = user.tag_selections.filter(
tag__in = tags,
reason = 'good'
)