Skip to content

Commit

Permalink
Use the right config section (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
babolivier committed Oct 12, 2021
1 parent 04e3d31 commit fd1e123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3_storage_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class S3StorageProviderBackend(StorageProvider):
"""

def __init__(self, hs, config):
self.cache_directory = hs.config.media_store_path
self.cache_directory = hs.config.media.media_store_path
self.bucket = config["bucket"]
self.storage_class = config["storage_class"]
self.api_kwargs = {}
Expand Down

0 comments on commit fd1e123

Please sign in to comment.