fix for my previous attempt

my first code was garbage now I am adding the line using string.concat.
This commit is contained in:
EzioTheDeadPoet 2020-09-05 19:42:40 +02:00 committed by GitHub
parent cd75ea9f1b
commit d0f0564422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,7 +100,7 @@ namespace Wabbajack.Lib.Downloaders
public string GetMetaIniString()
{
return string.Join("\n", GetMetaIni(), "\n", "installed=true");
return string.concat(string.Join("\n", [GetMetaIni()), " installed=true");
}
public async Task<(Archive? Archive, TempFile NewFile)> ServerFindUpgrade(Archive a)