From 50d8c43e7ccb9e14de66bac1545efaa1cdde6c38 Mon Sep 17 00:00:00 2001 From: Simon Frei Date: Tue, 12 Mar 2019 13:59:26 +0100 Subject: [PATCH] lib/config: Set UseLargeBlocks to true by default (fixes #5599) (#5600) --- lib/config/folderconfiguration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/folderconfiguration.go b/lib/config/folderconfiguration.go index 2f47f1d5..5b08bd81 100644 --- a/lib/config/folderconfiguration.go +++ b/lib/config/folderconfiguration.go @@ -52,7 +52,7 @@ type FolderConfiguration struct { Paused bool `xml:"paused" json:"paused"` WeakHashThresholdPct int `xml:"weakHashThresholdPct" json:"weakHashThresholdPct"` // Use weak hash if more than X percent of the file has changed. Set to -1 to always use weak hash. MarkerName string `xml:"markerName" json:"markerName"` - UseLargeBlocks bool `xml:"useLargeBlocks" json:"useLargeBlocks"` + UseLargeBlocks bool `xml:"useLargeBlocks" json:"useLargeBlocks" default:"true"` CopyOwnershipFromParent bool `xml:"copyOwnershipFromParent" json:"copyOwnershipFromParent"` cachedFilesystem fs.Filesystem