Skip to content

Commit

Permalink
Merge pull request #6407 from nextcloud/rakekniven-patch-1
Browse files Browse the repository at this point in the history
fix(i18n): uppercase ID
  • Loading branch information
mgallien authored Feb 6, 2024
2 parents 76f19ee + f613720 commit b11648e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libsync/encryptedfoldermetadatahandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/libsync/updatee2eefolderusersmetadatajob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit b11648e

Please sign in to comment.