mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 20:52:44 +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);
|
labelProgress.Text = string.Format(LanguageSettings.Current.TextToSpeech.MergingAudioTrackXOfY, index + 1, _subtitle.Paragraphs.Count);
|
||||||
var p = _subtitle.Paragraphs[index];
|
var p = _subtitle.Paragraphs[index];
|
||||||
var pFileName = fileNames[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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user