From 5697dbc80f58b1a97a66e717bfd0fcbffc60ec42 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 16 Jun 2022 18:08:12 +0100 Subject: [PATCH] local: fix parsing of --local-nounc flag --- backend/local/local.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/local/local.go b/backend/local/local.go index e36c56e2c..1a8908720 100644 --- a/backend/local/local.go +++ b/backend/local/local.go @@ -45,6 +45,7 @@ func init() { Options: []fs.Option{{ Name: "nounc", Help: "Disable UNC (long path names) conversion on Windows.", + Default: false, Advanced: runtime.GOOS != "windows", Examples: []fs.OptionExample{{ Value: "true",