Skip to content

Commit

Permalink
Merge pull request #729 from lukeasrodgers/bugfix-taglist-concat
Browse files Browse the repository at this point in the history
Bugfix `TagList#concat` with non-duplicates.
  • Loading branch information
seuros authored May 6, 2017
2 parents 919e719 + 8097e66 commit c498440
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/acts_as_taggable_on/tag_list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def +(other_tag_list)
# Appends the elements of +other_tag_list+ to +self+.
def concat(other_tag_list)
super(other_tag_list).send(:clean!)
self
end

##
Expand Down

0 comments on commit c498440

Please sign in to comment.