added installation_uuid to apiPayload (#747)

Added installation_uuid to apiPayload
This commit is contained in:
Nethius 2024-04-18 20:02:34 +07:00 committed by GitHub
parent f0085f52eb
commit d50e7dd3f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 38 additions and 10 deletions

View file

@ -42,7 +42,7 @@ void ConnectionController::openConnection()
if (serverConfig.value(config_key::configVersion).toInt()
&& !m_serversModel->data(serverIndex, ServersModel::Roles::HasInstalledContainers).toBool()) {
ApiController apiController;
errorCode = apiController.updateServerConfigFromApi(serverConfig);
errorCode = apiController.updateServerConfigFromApi(m_settings->getInstallationUuid(true), serverConfig);
if (errorCode != ErrorCode::NoError) {
emit connectionErrorOccurred(errorString(errorCode));
return;