diff --git a/cmd/syncthing/usage_report.go b/cmd/syncthing/usage_report.go index 3e3c22399..5dea04d53 100644 --- a/cmd/syncthing/usage_report.go +++ b/cmd/syncthing/usage_report.go @@ -26,6 +26,7 @@ import ( "github.com/syncthing/syncthing/lib/protocol" "github.com/syncthing/syncthing/lib/scanner" "github.com/syncthing/syncthing/lib/upgrade" + "github.com/syncthing/syncthing/lib/weakhash" ) // Current version number of the usage report, for acceptance purposes. If @@ -190,6 +191,7 @@ func reportData(cfg configIntf, m modelIntf, connectionsService connectionsIntf, res["progressEmitterEnabled"] = opts.ProgressUpdateIntervalS > -1 res["customDefaultFolderPath"] = opts.DefaultFolderPath != "~" res["weakHashSelection"] = opts.WeakHashSelectionMethod.String() + res["weakHashEnabled"] = weakhash.Enabled res["customTrafficClass"] = opts.TrafficClass != 0 res["customTempIndexMinBlocks"] = opts.TempIndexMinBlocks != 10 res["temporariesDisabled"] = opts.KeepTemporariesH == 0