-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rails 4.2 Can't modify frozen hash ActiveSupport::HashWithIndifferentAccess #580
Comments
changed_attributes I haven't and changed_attributes[attrib] gives problem |
Tag list should receive an array or a TagList |
I believe PR #583 fixes this -- changed_attributes is frozen in rails 4.2 so can't be modified through the accessor. Rails 4.2 also requires filtering the *_list attributes from changed_attributes when doing db updates. |
Will a new version of the gem come out that contains this fix? Right now it looks like I'll have to tie this to a master commit in my Gemfile to get this fix. |
rails 4.2 compatibility, fixes mbleigh/acts-as-taggable-on#580
I have
Can't modify frozen hash ActiveSupport::HashWithIndifferentAccess
when I doblog.tag_list = "hello"
with rails 4.2Now I dont know how to fix it.
The text was updated successfully, but these errors were encountered: