forked from 0x2620/pandora
add distinct again
This commit is contained in:
parent
b55d368920
commit
513e79b431
1 changed files with 2 additions and 2 deletions
|
@ -298,8 +298,8 @@ class ItemManager(Manager):
|
||||||
data.get('query', {}).get('operator', '&'),
|
data.get('query', {}).get('operator', '&'),
|
||||||
user)
|
user)
|
||||||
qs = qs.filter(conditions)
|
qs = qs.filter(conditions)
|
||||||
#FIXME: why was this in?
|
#FIXME: can this be avoided? needed for grid/accessed/foo
|
||||||
#qs = qs.distinct()
|
qs = qs.distinct()
|
||||||
|
|
||||||
#anonymous can only see public items
|
#anonymous can only see public items
|
||||||
if not user or user.is_anonymous():
|
if not user or user.is_anonymous():
|
||||||
|
|
Loading…
Reference in a new issue