From 7c4a61a1525440fe1f487da332e6de3fa936d321 Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Fri, 24 Aug 2018 10:50:44 +0200 Subject: [PATCH] Allow up to 2 mb ebu stl sub files --- libse/SubtitleFormats/Ebu.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libse/SubtitleFormats/Ebu.cs b/libse/SubtitleFormats/Ebu.cs index f1774721a..5dc5b107a 100644 --- a/libse/SubtitleFormats/Ebu.cs +++ b/libse/SubtitleFormats/Ebu.cs @@ -803,7 +803,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats if (!string.IsNullOrEmpty(fileName) && File.Exists(fileName)) { var fi = new FileInfo(fileName); - if (fi.Length >= 1024 + 128 && fi.Length < 1024000) // not too small or too big + if (fi.Length >= 1024 + 128 && fi.Length < 2048000) // not too small or too big { try {