Skip to content

Commit

Permalink
fix logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
psych0d0g authored Oct 27, 2024
1 parent da41667 commit c258a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/grpc-ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def handle_quoted_arguments(command_args):
file_path = file_path_arg[len('file:'):] # Extract the actual file path

# Quote the file path if it contains spaces or special characters
if any(char in next_arg for char in chars_that_need_quoting):
if any(char in file_path for char in chars_that_need_quoting):
file_path = f'"{file_path}"'

# Reassemble the -i file: argument
Expand Down

0 comments on commit c258a9a

Please sign in to comment.