mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 15:01:23 +01:00
getvalue closes buffer
This commit is contained in:
parent
1259a76047
commit
cc505b4b5e
1 changed files with 10 additions and 11 deletions
|
@ -359,8 +359,6 @@ class MediaRepository(object):
|
||||||
)
|
)
|
||||||
|
|
||||||
if t_byte_source:
|
if t_byte_source:
|
||||||
t_len = len(t_byte_source.getvalue())
|
|
||||||
|
|
||||||
output_path = yield self.write_to_file(
|
output_path = yield self.write_to_file(
|
||||||
t_byte_source,
|
t_byte_source,
|
||||||
self.filepaths.local_media_thumbnail_rel(
|
self.filepaths.local_media_thumbnail_rel(
|
||||||
|
@ -369,6 +367,8 @@ class MediaRepository(object):
|
||||||
)
|
)
|
||||||
logger.info("Stored thumbnail in file %r", output_path)
|
logger.info("Stored thumbnail in file %r", output_path)
|
||||||
|
|
||||||
|
t_len = os.path.getsize(output_path)
|
||||||
|
|
||||||
yield self.store.store_local_thumbnail_rel(
|
yield self.store.store_local_thumbnail_rel(
|
||||||
media_id, t_width, t_height, t_type, t_method, t_len
|
media_id, t_width, t_height, t_type, t_method, t_len
|
||||||
)
|
)
|
||||||
|
@ -388,7 +388,6 @@ class MediaRepository(object):
|
||||||
)
|
)
|
||||||
|
|
||||||
if t_byte_source:
|
if t_byte_source:
|
||||||
t_len = len(t_byte_source.getvalue())
|
|
||||||
output_path = yield self.write_to_file(
|
output_path = yield self.write_to_file(
|
||||||
t_byte_source,
|
t_byte_source,
|
||||||
self.filepaths.remote_media_thumbnail_rel(
|
self.filepaths.remote_media_thumbnail_rel(
|
||||||
|
@ -397,7 +396,9 @@ class MediaRepository(object):
|
||||||
)
|
)
|
||||||
logger.info("Stored thumbnail in file %r", output_path)
|
logger.info("Stored thumbnail in file %r", output_path)
|
||||||
|
|
||||||
yield self.store.store_remote_media_thumbnail_rel(
|
t_len = os.path.getsize(output_path)
|
||||||
|
|
||||||
|
yield self.store.store_remote_media_thumbnail(
|
||||||
server_name, media_id, file_id,
|
server_name, media_id, file_id,
|
||||||
t_width, t_height, t_type, t_method, t_len
|
t_width, t_height, t_type, t_method, t_len
|
||||||
)
|
)
|
||||||
|
@ -451,9 +452,8 @@ class MediaRepository(object):
|
||||||
media_id, t_width, t_height, t_type, t_method
|
media_id, t_width, t_height, t_type, t_method
|
||||||
)
|
)
|
||||||
|
|
||||||
t_len = len(t_byte_source.getvalue())
|
output_path = yield self.write_to_file(t_byte_source, file_path)
|
||||||
|
t_len = os.path.getsize(output_path)
|
||||||
yield self.write_to_file(t_byte_source, file_path)
|
|
||||||
|
|
||||||
yield self.store.store_local_thumbnail(
|
yield self.store.store_local_thumbnail(
|
||||||
media_id, t_width, t_height, t_type, t_method, t_len
|
media_id, t_width, t_height, t_type, t_method, t_len
|
||||||
|
@ -503,9 +503,8 @@ class MediaRepository(object):
|
||||||
server_name, file_id, t_width, t_height, t_type, t_method
|
server_name, file_id, t_width, t_height, t_type, t_method
|
||||||
)
|
)
|
||||||
|
|
||||||
t_len = len(t_byte_source.getvalue())
|
output_path = yield self.write_to_file(t_byte_source, file_path)
|
||||||
|
t_len = os.path.getsize(output_path)
|
||||||
yield self.write_to_file(t_byte_source, file_path)
|
|
||||||
|
|
||||||
yield self.store.store_remote_media_thumbnail(
|
yield self.store.store_remote_media_thumbnail(
|
||||||
server_name, media_id, file_id,
|
server_name, media_id, file_id,
|
||||||
|
|
Loading…
Reference in a new issue