diff --git a/src/Forms/BatchConvert.cs b/src/Forms/BatchConvert.cs index 1332736f0..23f64adf6 100644 --- a/src/Forms/BatchConvert.cs +++ b/src/Forms/BatchConvert.cs @@ -1159,7 +1159,7 @@ namespace Nikse.SubtitleEdit.Forms } else if (comboBoxFilter.SelectedIndex == 4 && fileName.Contains(textBoxFilter.Text, StringComparison.OrdinalIgnoreCase)) { - skip = true; + skip = false; } return skip; } @@ -1803,6 +1803,10 @@ namespace Nikse.SubtitleEdit.Forms { // skip for now } + else if (comboBoxFilter.SelectedIndex == 4 && textBoxFilter.Text.Length > 0 && !fileName.Contains(textBoxFilter.Text, StringComparison.OrdinalIgnoreCase)) + { + // skip + } else { if (fi.Length < ConvertMaxFileSize)