diff --git a/config/initializers/monkey_patches.rb b/config/initializers/monkey_patches.rb new file mode 100644 index 000000000..5c82ece93 --- /dev/null +++ b/config/initializers/monkey_patches.rb @@ -0,0 +1,9 @@ +ActiveStorage::Identification.class_eval do + def apply + # Monkey patch ActiveStorage to trust the user-submitted content type rather than determining + # it from the file contents, because Cellar does not seem to support the Range header + # + # FIXME : remove when better fix is available + blob.update!(content_type: declared_content_type, identified: true) unless blob.identified? + end +end