forked from MirrorHub/synapse
Fix passing wrong config to provider constructor
This commit is contained in:
parent
8e85220373
commit
d69768348f
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ class ContentRepositoryConfig(Config):
|
||||||
)
|
)
|
||||||
|
|
||||||
self.media_storage_providers.append(
|
self.media_storage_providers.append(
|
||||||
(provider_class, provider_config, wrapper_config,)
|
(provider_class, parsed_config, wrapper_config,)
|
||||||
)
|
)
|
||||||
|
|
||||||
self.uploads_path = self.ensure_directory(config["uploads_path"])
|
self.uploads_path = self.ensure_directory(config["uploads_path"])
|
||||||
|
|
Loading…
Reference in a new issue