Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
103c8c37
Unverified
Commit
103c8c37
authored
6 years ago
by
Morris Jobke
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #10120 from nextcloud/allow-to-disable-encryption
allow to disable encryption
parents
a85dc858
5d0fa12e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/private/Files/Storage/Wrapper/Encryption.php
+6
-2
6 additions, 2 deletions
lib/private/Files/Storage/Wrapper/Encryption.php
with
6 additions
and
2 deletions
lib/private/Files/Storage/Wrapper/Encryption.php
+
6
−
2
View file @
103c8c37
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment