fix missing param and setting

This commit is contained in:
IsWaffle 2023-07-20 19:35:27 -04:00
parent 47f84f5cd7
commit 2d21636fe7
2 changed files with 4 additions and 3 deletions

View File

@ -38,7 +38,7 @@ namespace EftPatchHelper.Tasks
if(_settings.UsingGoFile() && _options.UploadToGoFile)
{
var gofile = new GoFileUpload(patcherFile, _settings.GoFileApiKey);
var gofile = new GoFileUpload(patcherFile, _settings.GoFileApiKey, _settings.GoFileFolderId);
_fileUploads.Add(gofile);
}

View File

@ -12,6 +12,7 @@
"giteaReleaseRepoName": "",
"megaEmail": "",
"megaPassword": "",
"megaUploadFolder": "",
"goFileApiKey": ""
"megaUploadFolder": "",
"goFileApiKey": "",
"goFileFolderId": ""
}