[Backport]Fixing attach_watchers_attrs_to_queryset method

remotes/origin/logger
Alejandro Alonso 2015-12-12 21:00:09 +01:00
parent 56432f3df2
commit b75937942d
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class WatchedResourceMixin:
def attach_watchers_attrs_to_queryset(self, queryset):
qs = attach_watchers_to_queryset(queryset)
qs = attach_total_watchers_to_queryset(queryset)
qs = attach_total_watchers_to_queryset(qs)
if self.request.user.is_authenticated():
qs = attach_is_watcher_to_queryset(qs, self.request.user)