Skip to content

Commit

Permalink
Expression fix
Browse files Browse the repository at this point in the history
  • Loading branch information
moisespr123 committed Mar 4, 2019
1 parent 66a1c40 commit ac827ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opus_gui/Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit ac827ac

Please sign in to comment.