Skip to content

Commit

Permalink
fix:TypeError: [#131] 'Message' object is not callable
Browse files Browse the repository at this point in the history
  • Loading branch information
kalanakt committed Jan 27, 2024
1 parent 5b2d37f commit c766c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Uploader/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async def youtube_dl_call_back(_bot, update):
with open(save_ytdl_json_path, "r", encoding="utf8") as f:
response_json = json.load(f)
except FileNotFoundError as e:
await update.message(f"error: {e}")
await update.message.edit(f"error: {e}")
await update.message.delete()
return False
youtube_dl_url = update.message.reply_to_message.text
Expand Down

1 comment on commit c766c3e

@vercel
Copy link

@vercel vercel bot commented on c766c3e Jan 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

all-url-uploader – ./

all-url-uploader-git-main-netronk.vercel.app
all-url-uploader-netronk.vercel.app
urluploader.vercel.app

Please sign in to comment.