This commit is contained in:
levina 2021-10-31 05:49:09 +07:00 committed by GitHub
parent ed48897c2b
commit eea17c48f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ def ytsearch(query):
for r in search.result()["result"]: for r in search.result()["result"]:
ytid = r["id"] ytid = r["id"]
if len(r["title"]) > 34: if len(r["title"]) > 34:
songname = r["title"][:60] + "..." songname = r["title"][:70]
else: else:
songname = r["title"] songname = r["title"]
url = f"https://www.youtube.com/watch?v={ytid}" url = f"https://www.youtube.com/watch?v={ytid}"
@ -74,9 +74,9 @@ async def play(_, m: Message):
link = replied.link link = replied.link
if replied.audio: if replied.audio:
if replied.audio.title: if replied.audio.title:
songname = replied.audio.title[:60] + "..." songname = replied.audio.title[:70]
else: else:
songname = replied.audio.file_name[:60] + "..." songname = replied.audio.file_name[:70]
elif replied.voice: elif replied.voice:
songname = "Voice Note" songname = "Voice Note"
if chat_id in QUEUE: if chat_id in QUEUE: