fix(i18n): uppercase ID

Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
This commit is contained in:
rakekniven 2024-02-04 16:33:30 +01:00 committed by Matthieu Gallien
parent 76f19ee0d8
commit 0799af8ed3

View file

@ -144,7 +144,7 @@ void EncryptedFolderMetadataHandler::slotFolderEncryptedIdError(QNetworkReply *r
Q_ASSERT(reply);
qCDebug(lcFetchAndUploadE2eeFolderMetadataJob) << "Error retrieving the Id of the encrypted folder.";
if (!reply) {
emit fetchFinished(-1, tr("Error fetching encrypted folder id."));
emit fetchFinished(-1, tr("Error fetching encrypted folder ID."));
return;
}
const auto errorCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();