0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-23 08:49:09 +02:00

_make_dirs was moved to MediaRepository

This commit is contained in:
Erik Johnston 2016-04-19 14:49:31 +01:00
parent 9181e2f4c7
commit a7001c311b

View file

@ -370,7 +370,7 @@ class PreviewUrlResource(Resource):
file_id = random_string(24)
fname = self.filepaths.local_media_filepath(file_id)
self._makedirs(fname)
self.media_repo._makedirs(fname)
try:
with open(fname, "wb") as f: