added the OS version and application version to the api request payload (#810)

* added the OS version and application version to the api request payload
* added errorStrings for new api error codes
This commit is contained in:
Nethius 2024-05-17 00:57:51 +07:00 committed by GitHub
parent b71dcb8dd0
commit 2254bfc128
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View file

@ -57,6 +57,9 @@ QString errorString(ErrorCode code) {
// Api errors
case (ApiConfigDownloadError): errorMessage = QObject::tr("Error when retrieving configuration from API"); break;
case (ApiConfigAlreadyAdded): errorMessage = QObject::tr("This config has already been added to the application"); break;
case (ApiConfigEmptyError): errorMessage = QObject::tr("In the response from the server, an empty config was received"); break;
case (ApiConfigSslError): errorMessage = QObject::tr("SSL error occurred"); break;
case (ApiConfigTimeoutError): errorMessage = QObject::tr("Server response timeout on api request"); break;
// QFile errors
case(OpenError): errorMessage = QObject::tr("QFile error: The file could not be opened"); break;