Merge pull request #2205 from wabbajack-tools/fix_writing_metas_task

Fix writing metas task
This commit is contained in:
Timothy Baldridge 2022-11-17 06:40:59 -07:00 committed by GitHub
commit 98ceb23eac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1,10 +1,10 @@
### Changelog
#### Version - 3.0.4.1 - TBD
* Fix recursive writing of meta files for meta files
* Improved Admin Check
* Improved naming of installation fields to clear up some confusion.
#### Version - 3.0.4.0 - 11/12/2022
* Upgrade GameFinder to 2.2.1
* Update to .NET 7.0 (no user updates required)

View File

@ -229,6 +229,7 @@ public class StandardInstaller : AInstaller<StandardInstaller>
_logger.LogInformation("Writing Metas");
await _configuration.Downloads.EnumerateFiles()
.Where(download => download.Extension != Ext.Meta)
.PDoAll(async download =>
{
var metaFile = download.WithExtension(Ext.Meta);