Remove return from MediaInfo.to_thumbnail()

and from MediaInfo.to_content()
This commit is contained in:
Alexander Manning 2021-05-14 16:35:20 +01:00
parent 7b4cc0527d
commit 5e81131ecf
No known key found for this signature in database
GPG Key ID: 22F72ED88C94E2B0
2 changed files with 6 additions and 10 deletions

View File

@ -953,21 +953,21 @@ class ProxyDaemon:
body=await response.transport_response.read(),
)
media_content = media_info.to_content(content, upload_info.mimetype)
if media_content["info"].get("thumbnail_url", False):
media_info.to_content(content, upload_info.mimetype)
if content["info"].get("thumbnail_url", False):
(
thumb_upload_info,
thumb_media_info,
) = self._get_upload_and_media_info(
"thumbnail_url", media_content["info"]
"thumbnail_url", content["info"]
)
if thumb_upload_info and thumb_media_info:
media_content = thumb_media_info.to_thumbnail(
media_content, thumb_upload_info.mimetype
thumb_media_info.to_thumbnail(
content, thumb_upload_info.mimetype
)
response = await client.room_send(
room_id, msgtype, media_content, txnid, ignore_unverified
room_id, msgtype, content, txnid, ignore_unverified
)
else:
response = await client.room_send(

View File

@ -58,7 +58,6 @@ class MediaInfo:
"mimetype": mime_type,
}
return content
def to_thumbnail(self, content: Dict, mime_type: str) -> Dict[Any, Any]:
content["info"]["thumbnail_file"] = {
@ -70,9 +69,6 @@ class MediaInfo:
"mimetype": mime_type,
}
return content
@attr.s
class UploadInfo: