module ActiveStorage::Blob::Identifiable

def download_identifiable_chunk

def download_identifiable_chunk
  if byte_size.positive?
    service.download_chunk key, 0...4.kilobytes
  else
    ""
  end
end