diff options
Diffstat (limited to 'pkg/config/config.go')
-rw-r--r-- | pkg/config/config.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go index 993cd71..689ad58 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -85,13 +85,13 @@ func (cfg *Config) Validate() error { } // Marks whether 'text' part should be included in mails -func (cfg *Config) WithPartText() bool { - return util.StrContains(cfg.Parts, "text") +func (opt GlobalOptions) WithPartText() bool { + return util.StrContains(opt.Parts, "text") } // Marks whether 'html' part should be included in mails -func (cfg *Config) WithPartHtml() bool { - return util.StrContains(cfg.Parts, "html") +func (opt GlobalOptions) WithPartHtml() bool { + return util.StrContains(opt.Parts, "html") } // Current feed2imap version |