aboutsummaryrefslogtreecommitdiffstats
path: root/community/nextcloud/disable-integrity-check-as-default.patch
blob: cf6391a3332320d70222fad2bf26d9a20465deb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- 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;