clarified error

This commit is contained in:
McCloudS
2024-09-30 23:04:31 -06:00
committed by GitHub
parent 0c880c2dba
commit 6bfa46a619

View File

@@ -697,7 +697,7 @@ def get_jellyfin_admin(users):
def has_audio(file_path):
try:
if has_image_extension(file_path):
logging.debug(f"{file_path} is an image, skipping processing")
logging.debug(f"{file_path} is an image or is an invalid file or path (are your volumes correct?), skipping processing")
return False
with av.open(file_path) as container: