2nd fix to the .meta including "installed=true"

i forgot to remove a `[`
This commit is contained in:
EzioTheDeadPoet 2020-09-05 19:48:05 +02:00 committed by GitHub
parent d0f0564422
commit 10c0fd916c
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.concat(string.Join("\n", [GetMetaIni()), " installed=true");
return string.concat(string.Join("\n", GetMetaIni()), " installed=true");
}
public async Task<(Archive? Archive, TempFile NewFile)> ServerFindUpgrade(Archive a)