Fix upload_and_send_image error message

This commit is contained in:
Andrea Spacca 2021-09-14 08:51:03 +02:00
parent 2d19affee8
commit 1e9ac6035f
1 changed files with 1 additions and 1 deletions

2
bot.py
View File

@ -117,7 +117,7 @@ class Bot:
try:
matrix_uri, mimetype, w, h, size = await self.upload_image(url, blob=blob, no_cache=no_cache)
except (UploadFailed, ValueError):
return await self.send_text(room, f"Sorry. Something went wrong fetching {url} and uploading it to the image to matrix server :(")
return await self.send_text(room, f"Sorry. Something went wrong fetching {url} and uploading the image to matrix server :(")
return await self.send_image(room, matrix_uri, text, mimetype, w, h, size)