Skip to content

Commit

Permalink
Make issues_with overwrite more combatible with other plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Jan 24, 2024
1 parent 97032b4 commit 1aadcce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/additional_tags/patches/issue_query_patch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ def sql_for_tags_field(field, _operator, values)
end

module InstanceMethods
def issues_with_tags(**options)
def issues_with_tags(options = nil)
options ||= {}
issues = issues_without_tags(**options)
return issues unless has_column? :tags

Expand Down

0 comments on commit 1aadcce

Please sign in to comment.