aboutsummaryrefslogtreecommitdiff
path: root/pkg/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkg/config/config.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go
index aaf6701..db320c9 100644
--- a/pkg/config/config.go
+++ b/pkg/config/config.go
@@ -5,10 +5,10 @@ import (
"os"
"os/user"
"runtime"
+ "slices"
"strings"
"github.com/Necoro/feed2imap-go/pkg/log"
- "github.com/Necoro/feed2imap-go/pkg/util"
)
// Map is a convenience type for the non-mapped configuration options
@@ -114,12 +114,12 @@ func (cfg *Config) Validate() error {
// WithPartText marks whether 'text' part should be included in mails
func (opt GlobalOptions) WithPartText() bool {
- return util.Contains(opt.Parts, "text")
+ return slices.Contains(opt.Parts, "text")
}
// WithPartHtml marks whether 'html' part should be included in mails
func (opt GlobalOptions) WithPartHtml() bool {
- return util.Contains(opt.Parts, "html")
+ return slices.Contains(opt.Parts, "html")
}
// Load configuration from file and validate it