doc: changelog

This commit is contained in:
Timothy Jaeryang Baek
2025-05-30 01:14:38 +04:00
parent d6c3f93cfd
commit 036ce12dd9
2 changed files with 17 additions and 1 deletions

View File

@@ -97,7 +97,7 @@ def is_audio_conversion_required(file_path):
return True
# If the codec name is in the supported formats
if (codec_name in SUPPORTED_FORMATS):
if codec_name in SUPPORTED_FORMATS:
return False
return True