mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Fix crash #8323
This commit is contained in:
parent
be432810e1
commit
ea565668ce
@ -543,9 +543,9 @@ namespace Nikse.SubtitleEdit.Forms.Tts
|
||||
labelProgress.Text = string.Format(LanguageSettings.Current.TextToSpeech.MergingAudioTrackXOfY, index + 1, _subtitle.Paragraphs.Count);
|
||||
var p = _subtitle.Paragraphs[index];
|
||||
var pFileName = fileNames[index];
|
||||
if (!File.Exists(pFileName.Filename))
|
||||
if (pFileName == null || !File.Exists(pFileName.Filename))
|
||||
{
|
||||
SeLogger.Error($"TextToSpeech: File not found (skipping): {pFileName.Filename}");
|
||||
SeLogger.Error($"TextToSpeech: File not found (skipping): {pFileName?.Filename}");
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user