Merged master

This commit is contained in:
MrGadget1024 2023-11-08 15:54:03 -05:00
commit 6040ef2670
2 changed files with 1 additions and 3 deletions

View File

@ -21,8 +21,6 @@ jobs:
- name: Set up .NET Core
uses: actions/setup-dotnet@v1
#with:
# dotnet-version: 3.1.301
- name: Install dotnet-script
run: |

View File

@ -278,7 +278,7 @@ string selectedApiTokenValue
// Make HTTP request
HttpClient _httpClient = CreateHttpClient(); // MIRROR CHANGE: create HTTPClient in-place to avoid InvalidOperationExceptions when reusing
string path = $"/v1/app/{_appName}/version/{_appVersionName}";
string path = $"/v1/app/{selectedAppName}/version/{selectedAppVersionName}"; // MIRROR CHANGE: use selectedAppName and selectedAppVersionName instead of _appName & _appVersionName
HttpResponseMessage response = await _httpClient.GetAsync(path);
if (response.IsSuccessStatusCode)