Skip to content

Commit

Permalink
Update main_file.py
Browse files Browse the repository at this point in the history
  • Loading branch information
agneevX committed Nov 3, 2022
1 parent b935a7d commit 284d9ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main_file.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Name : ClearURLs BOT
Author : Gauthamram Ravichandran
Author : Agneev Mukherjee
"""
import logging
Expand Down Expand Up @@ -29,9 +29,9 @@
async def start_hndlr(event):
await event.reply(
"""
🧹 I will get you the clear urls without any tracking data using Unalix library.
🧹 I will get you clean URLs without any tracking data using the Unalix library.
You can send multiple urls in one message/one inline query as well with newline or space as separator.
You can send multiple URLs in one message/one inline query as well with newline or space as separator.
❔ How to use?
1. Forward me any message with links, I will reply you with clean URLs
Expand All @@ -42,7 +42,7 @@ async def start_hndlr(event):
""",
buttons=[
Button.url(
"📝 Source", "https://github.com/GauthamramRavichandran/clearurls"
"📝 Source", "https://github.com/agneevX/telegram-link-cleaner"
)
],
)
Expand Down Expand Up @@ -79,7 +79,7 @@ async def clearurl_hndlr(event):
to_send_txt = "\n\n".join(i for i in to_send)
try:
await event.reply(
f"🧹 Cleaned URLs: \n{to_send_txt}", link_preview=False
f"🧹 Clean URL: \n{to_send_txt}", link_preview=False
)
except ChatWriteForbiddenError:
# bot could send to the user (who added this bot to group), since we are not storing any details,
Expand Down

0 comments on commit 284d9ee

Please sign in to comment.