diff options
author | siddharth <s@ricketyspace.net> | 2021-11-28 23:34:15 -0500 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2021-11-28 23:34:15 -0500 |
commit | c78ce3ff4e7d5d1dfc79baaae646b9d2e3a55fee (patch) | |
tree | 401a2e9e803bba1b74989f75235b69b2ba44f900 /config/config.go | |
parent | 7d65a623291221f097af12bfd3c2994550d776f6 (diff) |
feed: fix Validate
Don't set YDLPath and DumpDir on Feed in `Validate` function. Set it
in the FeedConfig's `validate` function instead.
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/config.go b/config/config.go index 3d8c6f1..360d9a6 100644 --- a/config/config.go +++ b/config/config.go @@ -86,11 +86,13 @@ func (config *FernConfig) validate() error { if len(config.Feeds) == 0 { return fmt.Errorf("'feeds' not set in config") } - for _, feed := range config.Feeds { - err = feed.Validate(config.YDLPath, config.DumpDir) + for i, feed := range config.Feeds { + err = feed.Validate(config.DumpDir) if err != nil { return err } + config.Feeds[i].YDLPath = config.YDLPath + config.Feeds[i].DumpDir = feed.DumpDir } return nil |