FLV: Fix bug

This commit is contained in:
Genteure 2021-05-03 16:43:02 +08:00
parent 72161a3e65
commit 505e447e1d

View File

@ -271,7 +271,13 @@ namespace BililiveRecorder.Flv.Writer
if (disposing)
{
// dispose managed state (managed objects)
this.CloseCurrentFileImpl();
try
{
this.CloseCurrentFileImpl();
}
catch (Exception)
{ }
this.tagWriter.Dispose();
}