This commit is contained in:
yasirarism 2023-06-06 15:27:43 +00:00 committed by GitHub
parent e4dd79cda5
commit 39cd72b417
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ async def genss(self: Client, ctx: Message, strings):
ms = (end_t - start_t).seconds ms = (end_t - start_t).seconds
await pesan.edit(f"Downloaded to <code>{download_file_path}</code> in {ms} seconds") await pesan.edit(f"Downloaded to <code>{download_file_path}</code> in {ms} seconds")
try: try:
images = await take_ss(the_real_download_location) images = await take_ss(download_file_path)
await process.edit_msg(strings("up_progress")) await process.edit_msg(strings("up_progress"))
await self.send_chat_action(chat_id=ctx.chat.id, action=enums.ChatAction.UPLOAD_PHOTO) await self.send_chat_action(chat_id=ctx.chat.id, action=enums.ChatAction.UPLOAD_PHOTO)
try: try:
@ -109,14 +109,14 @@ async def genss(self: Client, ctx: Message, strings):
await pesan.delete() await pesan.delete()
try: try:
os.remove(images) os.remove(images)
os.remove(the_real_download_location) os.remove(download_file_path)
except: except:
pass pass
except Exception as exc: except Exception as exc:
await ctx.reply_msg(strings("err_ssgen").format(exc=exc)) await ctx.reply_msg(strings("err_ssgen").format(exc=exc))
try: try:
os.remove(images) os.remove(images)
os.remove(the_real_download_location) os.remove(download_file_path)
except: except:
pass pass
elif replied and replied.media: elif replied and replied.media: