Skip to content

Commit

Permalink
FIX: remove int escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
akhil-rana authored Mar 10, 2024
1 parent cabc27e commit 634e455
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,11 +37,11 @@ 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={shlex.quote(TELEGRAM_RADARR_CHAT_ID)}",
f"--telegram_radarr_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)}",
f"--delay_time={shlex.quote(str(TELEGRAMARR_DELAY_TIME))}",
f"--delay_time={TELEGRAMARR_DELAY_TIME}",
]
# Run the command in the background

Expand Down

0 comments on commit 634e455

Please sign in to comment.