mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Merge pull request #6407 from nextcloud/rakekniven-patch-1
fix(i18n): uppercase ID
This commit is contained in:
commit
b11648e8a6
@ -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();
|
||||
|
||||
@ -89,7 +89,7 @@ void UpdateE2eeFolderUsersMetadataJob::start(const bool keepLock)
|
||||
void UpdateE2eeFolderUsersMetadataJob::slotStartE2eeMetadataJobs()
|
||||
{
|
||||
if (_operation == Operation::Add && _folderUserCertificate.isNull()) {
|
||||
emit finished(404, tr("Could not fetch publicKey for user %1").arg(_folderUserId));
|
||||
emit finished(404, tr("Could not fetch public key for user %1").arg(_folderUserId));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user