mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Allow smaller PAC files - thx Mike :)
This commit is contained in:
parent
230f6a1be9
commit
11bbbab902
@ -1009,7 +1009,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
||||
try
|
||||
{
|
||||
var fi = new FileInfo(fileName);
|
||||
if (fi.Length > 100 && fi.Length < 1024000) // not too small or too big
|
||||
if (fi.Length > 65 && fi.Length < 1024000) // not too small or too big
|
||||
{
|
||||
byte[] buffer = FileUtil.ReadAllBytesShared(fileName);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user