Fixed #8 (I think?)

This commit is contained in:
Casey 2022-08-26 19:06:03 +03:00
parent 8088cca8f0
commit 855596c666
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class TelegramIntegration(BaseIntegration):
disable_web_page_preview=True,
chat_id=self.chat_id,
caption=text,
**{self.MEDIA_MAPPING[media.type]: media.preview_url},
**{self.MEDIA_MAPPING[media.type]: media.url},
)
async def _post_mediagroup(self, text: str, media: List[Attachment]) -> TGResponse: