Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/finders/issuables/author_filter.rb')
-rw-r--r--app/finders/issuables/author_filter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/issuables/author_filter.rb b/app/finders/issuables/author_filter.rb
index ce68dbafb95..522751a384e 100644
--- a/app/finders/issuables/author_filter.rb
+++ b/app/finders/issuables/author_filter.rb
@@ -27,7 +27,7 @@ module Issuables
end
def by_negated_author(issuables)
- return issuables unless not_filters_enabled? && not_params.present?
+ return issuables unless not_params.present?
if not_params[:author_id].present?
issuables.not_authored(not_params[:author_id])