aboutsummaryrefslogtreecommitdiffstats
path: root/community/nextcloud23/disable-integrity-check-as-default.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/nextcloud23/disable-integrity-check-as-default.patch')
-rw-r--r--community/nextcloud23/disable-integrity-check-as-default.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/community/nextcloud23/disable-integrity-check-as-default.patch b/community/nextcloud23/disable-integrity-check-as-default.patch
deleted file mode 100644
index 54ea7a51e00..00000000000
--- a/community/nextcloud23/disable-integrity-check-as-default.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-We patch some files and Nextcloud's integrity check doesn't like it...
-APK ensures integrity of all installed files, so this Nextcloud's integrity
-check doesn't add any value.
-
---- a/lib/private/IntegrityCheck/Checker.php
-+++ b/lib/private/IntegrityCheck/Checker.php
-@@ -111,7 +111,7 @@
- */
- $isIntegrityCheckDisabled = false;
- if ($this->config !== null) {
-- $isIntegrityCheckDisabled = $this->config->getSystemValue('integrity.check.disabled', false);
-+ $isIntegrityCheckDisabled = $this->config->getSystemValue('integrity.check.disabled', true);
- }
- if ($isIntegrityCheckDisabled === true) {
- return false;