diff options
Diffstat (limited to 'lib/model')
-rw-r--r-- | lib/model/folder.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/model/folder.go b/lib/model/folder.go index fa94409..c73accc 100644 --- a/lib/model/folder.go +++ b/lib/model/folder.go @@ -48,7 +48,7 @@ func (c *Folder) UpdateAll(newCfg xdsconfig.Config) error { Label: f.Label, RelativePath: f.RelativePath, SyncThingID: f.SyncThingID, - ShareRootDir: c.ShareRootDir, + ShareRootDir: c.FileConf.ShareRootDir, }); err != nil { return err } @@ -62,7 +62,7 @@ func (c *Folder) UpdateAll(newCfg xdsconfig.Config) error { func (c *Folder) UpdateFolder(newFolder xdsconfig.FolderConfig) (xdsconfig.FolderConfig, error) { // rootPath should not be empty if newFolder.RootPath == "" { - newFolder.RootPath = c.Conf.ShareRootDir + newFolder.RootPath = c.Conf.FileConf.ShareRootDir } // Sanity check of folder settings |