diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-09-18 18:14:37 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-09-18 18:14:37 +0200 |
commit | d4f7b45c3fe483d3864534642f10cf8f6ee23ae9 (patch) | |
tree | f87d948e5ab337f4929734e19e3781ed672c0b30 /lib/model | |
parent | d007a7512af1f6c9b9ab9a238b47f1ebfc9f4dc8 (diff) |
Fix syncthing binary path detection.
Diffstat (limited to 'lib/model')
-rw-r--r-- | lib/model/folders.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/model/folders.go b/lib/model/folders.go index ed0078e..7c08a88 100644 --- a/lib/model/folders.go +++ b/lib/model/folders.go @@ -197,7 +197,7 @@ func (f *Folders) createUpdate(newF folder.FolderConfig, create bool, initial bo // SYNCTHING case folder.TypeCloudSync: if f.SThg == nil { - return nil, fmt.Errorf("ClownSync type not supported (syncthing not initialized)") + return nil, fmt.Errorf("CloudSync type not supported (syncthing not initialized)") } fld = f.SThg.NewFolderST(f.Conf) // PATH MAP |