Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
akhil-rana authored Mar 11, 2024
1 parent 4fed087 commit 2fb6ed2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def process_radarr_webhook(body):
f"--telegram_bot_token={shlex.quote(TELEGRAM_BOT_TOKEN)}",
f"--telegram_api_hash={shlex.quote(TELEGRAM_API_HASH)}",
f"--telegram_api_id={shlex.quote(TELEGRAM_API_ID)}",
f"--telegram_radarr_chat_id={TELEGRAM_RADARR_CHAT_ID}",
f"--telegram_chat_id={TELEGRAM_RADARR_CHAT_ID}",
f"--file_name={shlex.quote(movie_file_name)}",
f"--file_path={shlex.quote(local_movie_file_path)}",
f"--file_caption_type={shlex.quote(TELEGRAMARR_FILE_CAPTION_CONTENT)}",
Expand All @@ -63,7 +63,7 @@ async def process_sonarr_webhook(body):
f"--telegram_bot_token={shlex.quote(TELEGRAM_BOT_TOKEN)}",
f"--telegram_api_hash={shlex.quote(TELEGRAM_API_HASH)}",
f"--telegram_api_id={shlex.quote(TELEGRAM_API_ID)}",
f"--telegram_radarr_chat_id={TELEGRAM_SONARR_CHAT_ID}",
f"--telegram_chat_id={TELEGRAM_SONARR_CHAT_ID}",
f"--file_name={shlex.quote(tvshow_file_name)}",
f"--file_path={shlex.quote(local_tvshow_file_path)}",
f"--file_caption_type={shlex.quote(TELEGRAMARR_FILE_CAPTION_CONTENT)}",
Expand Down

0 comments on commit 2fb6ed2

Please sign in to comment.