Skip to content

Instantly share code, notes, and snippets.

@fractaledmind
Created April 6, 2023 08:40
Show Gist options
  • Save fractaledmind/8d4ee596ecb48503d452bda32909917c to your computer and use it in GitHub Desktop.
Save fractaledmind/8d4ee596ecb48503d452bda32909917c to your computer and use it in GitHub Desktop.
This is the patch used to get around the bug reported with this gist: https://gist.github.com/fractaledmind/7574eaeb00dff6b9afd7778a7e024c19
# We need to patch PaperTrail to deal with Campaign having a `serialize` field that also has an `attribute` definition with a `default` value set for the attribute, as well as a database-level `default` set as well. For whatever all the reasons, PaperTrail tries to serialize the database-default, which is already a string. This throws an `ActiveRecord::SerializationTypeMismatch` error, as it is expecting the valued being serialized to be an `Array`. In this case, we can solve our problem by simply catching this error and checking of the value is already serialized.
module PaperTrail
module AttributeSerializers
class CastAttributeSerializer
private
def serialize(attr, val)
AttributeSerializerFactory.for(@klass, attr).serialize(val)
rescue ActiveRecord::SerializationTypeMismatch => error
if val.is_a?(String) && YAML.load(val)
val
else
raise error
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment