Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
xAmarnath committed May 5, 2024
1 parent 8f18377 commit c164613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/custdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ async def episode_x(e):
_episode_index_f = "0" + episode_index if len(episode_index) == 1 else episode_index
CAPTION += "**E{}S{}**\n\n".format(_episode_index_f, _season_index_f)
CAPTION += f"**Source Avaliable {tick_emoji}**\n\n**SUBS: {', '.join([sub['label'] for sub in src['subs']])}**"
if len(CAPTION > 1023):
if len(CAPTION) > 1023:
CAPTION = f"**Source Avaliable {tick_emoji}**\n\n**SUBS: {', '.join([sub['label'] for sub in src['subs']])}**"

await e.edit(CAPTION,
Expand Down

0 comments on commit c164613

Please sign in to comment.