diff --git a/Changelog.txt b/Changelog.txt index 626aa26b7..1d1faf014 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -58,6 +58,7 @@ * Fix crash in Google Translate Cloud V2 - thx Rielaph * Fix alpha in hex color codes - thx Paul * BDN XML - DropFrame="False" to DropFrame="false" - thx Alain + * Fix EBU STL writing on Linux - thx felagund/PunchaiW 3.6.13 (14th May 2023) diff --git a/src/libse/SubtitleFormats/Ebu.cs b/src/libse/SubtitleFormats/Ebu.cs index d83ddbcb3..ce7cf5c90 100644 --- a/src/libse/SubtitleFormats/Ebu.cs +++ b/src/libse/SubtitleFormats/Ebu.cs @@ -558,7 +558,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats SeLogger.Error("EBU STL ENCODING DIFF LENGTH: " + TextField); } - bytes = textBytes.ToArray(); //TODO: we use new byte list - remove old codd + bytes = textBytes.ToArray(); //TODO: we use new byte list - remove old code for (var i = 0; i < 112; i++)