Skip to content

Commit

Permalink
fixed the file missing .m4b
Browse files Browse the repository at this point in the history
  • Loading branch information
popcorn9499 committed Aug 15, 2020
1 parent 47d06c3 commit d861b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ProcessAudiobooks-UI/AddAudiobookWindow.xaml.cs
Expand Up @@ -134,7 +134,7 @@ private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs
private void tbSave_Click(object sender, RoutedEventArgs e)
{
List<String> fileList = lvListFiles.Items.Cast<String>().ToList();
book = new DataObjects.Audiobook(tbName.Text, tbOutputName.Text, tbArtist.Text, tbAlbum.Text, tbGenre.Text, tbYear.Text, tbWriter.Text, fileList, tbOutputPath.Text);
book = new DataObjects.Audiobook(tbName.Text, tbOutputName.Text + ".m4b" , tbArtist.Text, tbAlbum.Text, tbGenre.Text, tbYear.Text, tbWriter.Text, fileList, tbOutputPath.Text);
this.Close();
}
}
Expand Down

0 comments on commit d861b61

Please sign in to comment.