lib/config: Set UseLargeBlocks to true by default (fixes #5599) (#5600)

This commit is contained in:
Simon Frei 2019-03-12 13:59:26 +01:00 committed by Audrius Butkevicius
parent 90d9b2de2b
commit 50d8c43e7c
1 changed files with 1 additions and 1 deletions

View File

@ -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