mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
Fix typo
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
This commit is contained in:
parent
839c056b8d
commit
5afcf71e68
3 changed files with 4 additions and 4 deletions
|
@ -173,7 +173,7 @@ void PropagateUploadFileCommon::start()
|
|||
{
|
||||
if (propagator()->account()->capabilities().clientSideEncryptionAvaliable()) {
|
||||
_uploadEncryptedHelper = new PropagateUploadEncrypted(propagator(), _item);
|
||||
connect(_uploadEncryptedHelper, &PropagateUploadEncrypted::folerNotEncrypted,
|
||||
connect(_uploadEncryptedHelper, &PropagateUploadEncrypted::folderNotEncrypted,
|
||||
this, &PropagateUploadFileCommon::setupUnencryptedFile);
|
||||
connect(_uploadEncryptedHelper, &PropagateUploadEncrypted::finalized,
|
||||
this, &PropagateUploadFileCommon::setupEncryptedFile);
|
||||
|
|
|
@ -63,7 +63,7 @@ void PropagateUploadEncrypted::slotFolderEncryptedStatusFetched(const QString &f
|
|||
job->start();
|
||||
} else {
|
||||
qCDebug(lcPropagateUploadEncrypted) << "Folder is not encrypted, getting back to default.";
|
||||
emit folerNotEncrypted();
|
||||
emit folderNotEncrypted();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ class FolderMetadata;
|
|||
* emits:
|
||||
* finalized() if the encrypted file is ready to be uploaded
|
||||
* error() if there was an error with the encryption
|
||||
* folerNotEncrypted() if the file is within a folder that's not encrypted.
|
||||
* folderNotEncrypted() if the file is within a folder that's not encrypted.
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -60,7 +60,7 @@ signals:
|
|||
void error();
|
||||
|
||||
// Emited if the file is not in a encrypted folder.
|
||||
void folerNotEncrypted();
|
||||
void folderNotEncrypted();
|
||||
|
||||
private:
|
||||
OwncloudPropagator *_propagator;
|
||||
|
|
Loading…
Reference in a new issue