Skip to content

Commit

Permalink
Fixed selected audio is not exported properly when play is not started
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Oct 23, 2024
1 parent 0aa73b4 commit 03fd179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mirivoice/Mirivoice.Core/Managers/AudioManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public async void PlayAllCacheFiles(int startIndex, bool exportOnlyAndDoNotPlay
int no = Int32.Parse(v.CurrentLineBox.viewModel.LineNo) - 1;

string exportPath = Path.Combine(DirPath, $"{no}_{fileName}.wav");
string cacheName = caches[no];
string cacheName = caches[0];
exportPath = SetSuffixToUnique(exportPath, 1);
Log.Debug($"Exporting {cacheName} to {exportPath}");
// resample to 48000kHz
Expand Down

0 comments on commit 03fd179

Please sign in to comment.