From b67fd3ae6d7dc09033f86e2fa7a4be272b6c5c3b Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Tue, 29 Sep 2015 07:33:46 +0200 Subject: [PATCH] Allow up to 10 mb subtitles in batch convert - thx Kymophobia :) --- src/Forms/BatchConvert.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Forms/BatchConvert.cs b/src/Forms/BatchConvert.cs index db8e99d7a..16f652b3a 100644 --- a/src/Forms/BatchConvert.cs +++ b/src/Forms/BatchConvert.cs @@ -251,7 +251,7 @@ namespace Nikse.SubtitleEdit.Forms SubtitleFormat format = null; var sub = new Subtitle(); - if (fi.Length < 1024 * 1024) // max 1 mb + if (fi.Length < 1024 * 1024 * 10) // max 10 mb { Encoding encoding; format = sub.LoadSubtitle(fileName, out encoding, null);