From ac827ac069d4d1e7794aa0811fdf120d1f3e0c04 Mon Sep 17 00:00:00 2001 From: moisesmcardona Date: Sun, 3 Mar 2019 19:27:22 -0500 Subject: [PATCH] Expression fix --- opus_gui/Form1.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opus_gui/Form1.vb b/opus_gui/Form1.vb index 07839d3..ed2e4f0 100644 --- a/opus_gui/Form1.vb +++ b/opus_gui/Form1.vb @@ -56,7 +56,7 @@ If (IO.Path.GetExtension(File) = ".wav" Or IO.Path.GetExtension(File) = ".flac" Or IO.Path.GetExtension(File) = ".opus" And EncOpusenc.Checked) Or EncFfmpeg.Checked Then ItemsToProcess.Add(File) ElseIf IO.Path.GetExtension(File) = ".mp3" Or IO.Path.GetExtension(File) = ".m4a" And EncOpusenc.Checked Then - If Not ffmpeg_version == String.Empty Then + If Not ffmpeg_version = String.Empty Then ffmpeg_preprocess(File, IO.Path.GetFileNameWithoutExtension(File)) ItemsToProcess.Add(IO.Path.GetFileNameWithoutExtension(File) + ".flac") ItemsToDelete.Add(IO.Path.GetFileNameWithoutExtension(File) + ".flac")