Close the log archive, if it exists

This commit is contained in:
Matt Nadareski
2025-05-05 11:49:33 -04:00
parent 6a56a58b7c
commit 2d7350cbaf
2 changed files with 6 additions and 0 deletions

View File

@@ -42,6 +42,7 @@
- Tweak to previous commit for some build versions
- Fix lines wiped before displayed
- Update redumper to build 565
- Close the log archive, if it exists
### 3.3.0 (2025-01-03)

View File

@@ -239,6 +239,11 @@ namespace MPF.Processors
#endif
}
#if NET452_OR_GREATER || NETCOREAPP
// Close the log archive, if it exists
logArchive?.Dispose();
#endif
return missingFiles;
}