Skip to content

Commit

Permalink
Fixes #5070 - Indexing of attachments fails with S3 storage
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaefer committed Mar 7, 2024
1 parent 5d3d786 commit 6091855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/store/provider/s3.rb
Expand Up @@ -33,7 +33,7 @@ def delete(sha)

def get(sha)
object = request(:get_object, key: sha)
object.body.read
object.body.binmode.read
end

def upload(data, sha)
Expand Down

0 comments on commit 6091855

Please sign in to comment.