diff --git a/tubesync/sync/matching.py b/tubesync/sync/matching.py index c453ff96..93fcdae3 100644 --- a/tubesync/sync/matching.py +++ b/tubesync/sync/matching.py @@ -331,7 +331,7 @@ def get_best_video_format(media): for fmt in video_formats: # Check for a codec, hdr and fps match but drop the resolution if (source_vcodec == fmt['vcodec'] and - not fmt['is_hdr'] and fmt['is_60fps']): + not fmt['is_hdr'] and not fmt['is_60fps']): # Close match exact_match, best_match = False, fmt break