Skip to content
Snippets Groups Projects
Unverified Commit 103c8c37 authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #10120 from nextcloud/allow-to-disable-encryption

allow to disable encryption
parents a85dc858 5d0fa12e
No related branches found
No related tags found
No related merge requests found
......@@ -412,9 +412,13 @@ class Encryption extends Wrapper {
|| $mode === 'wb'
|| $mode === 'wb+'
) {
// don't overwrite encrypted files if encryption is not enabled
// if we update a encrypted file with a un-encrypted one we change the db flag
if ($targetIsEncrypted && $encryptionEnabled === false) {
throw new GenericEncryptionException('Tried to access encrypted file but encryption is not enabled');
$cache = $this->storage->getCache();
if ($cache) {
$entry = $cache->get($path);
$cache->update($entry->getId(), ['encrypted' => 0]);
}
}
if ($encryptionEnabled) {
// if $encryptionModuleId is empty, the default module will be used
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment