diff options
-rw-r--r-- | fbin/file_storage/s3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fbin/file_storage/s3.py b/fbin/file_storage/s3.py index 9d0bb56..9e68186 100644 --- a/fbin/file_storage/s3.py +++ b/fbin/file_storage/s3.py @@ -31,7 +31,7 @@ class Storage(BaseStorage): size = obj.size return self.add_file(file_hash, uploaded_file.filename, size, user, ip) - def get_file(self, f, thumb=True): + def get_file(self, f, thumb=False): key = self.get_object_key(f, thumb=thumb) if thumb: bucket = self.app.config['S3_THUMB_BUCKET'] |