Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Merge pull request mbleigh#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 committed May 6, 2017
2 parents 097bef8 + 3d7fe4c commit fff1c7b
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 fff1c7b

Please sign in to comment.