diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-16 22:51:32 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-17 14:04:32 +0200 |
commit | c07adb807c41a1545a9a0f5bbf40080d86946538 (patch) | |
tree | 21e00efbcd03360416698663a1ea89536717ae86 /lib/apiv1/config.go | |
parent | 8983eebdbe74489d62eae4097580fc430d75bd07 (diff) |
Auto start Syncthing and Syncthing-inotify.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/apiv1/config.go')
-rw-r--r-- | lib/apiv1/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/apiv1/config.go b/lib/apiv1/config.go index a2817a0..326b6fa 100644 --- a/lib/apiv1/config.go +++ b/lib/apiv1/config.go @@ -36,7 +36,7 @@ func (s *APIService) setConfig(c *gin.Context) { s.log.Debugln("SET config: ", cfgArg) - if err := s.cfg.UpdateAll(cfgArg); err != nil { + if err := s.mfolder.UpdateAll(cfgArg); err != nil { common.APIError(c, err.Error()) return } |