diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-02-22 19:54:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 19:54:49 +0000 |
commit | 1b2d6d55c5f4e68053705c46a968e0b2815ab5de (patch) | |
tree | 8c9f3709f214bba2fab7b5f99591f43bdf5b208d /synapse | |
parent | Add an `order_by` field to list users' media admin API. (#8978) (diff) | |
download | synapse-1b2d6d55c5f4e68053705c46a968e0b2815ab5de.tar.xz |
Remove vestiges of uploads_path config (#9462)
`uploads_path` was a thing that was never used; most of it was removed in #6628 but a few vestiges remained.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/config/repository.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/config/repository.py b/synapse/config/repository.py index 52849c3256..69d9de5a43 100644 --- a/synapse/config/repository.py +++ b/synapse/config/repository.py @@ -206,7 +206,6 @@ class ContentRepositoryConfig(Config): def generate_config_section(self, data_dir_path, **kwargs): media_store = os.path.join(data_dir_path, "media_store") - uploads_path = os.path.join(data_dir_path, "uploads") formatted_thumbnail_sizes = "".join( THUMBNAIL_SIZE_YAML % s for s in DEFAULT_THUMBNAIL_SIZES |