Fix incorrectly disposing stream

This commit is contained in:
Matt Nadareski
2021-03-15 22:06:14 -07:00
parent eda34b3477
commit 7cc231f5fd

View File

@@ -100,7 +100,7 @@ namespace MPF.Utilities
}
finally
{
fs.Dispose();
fs?.Dispose();
}
}
}