{
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);
* 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.
*
*/
void error();
// Emited if the file is not in a encrypted folder.
- void folerNotEncrypted();
+ void folderNotEncrypted();
private:
OwncloudPropagator *_propagator;