mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
fix: EdgegapHosting connect uses passed-in name/version (#3646)
This commit is contained in:
parent
5e1be44ba1
commit
d4734c0892
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user