aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/template/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/feed/template/template.go')
-rw-r--r--internal/feed/template/template.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/feed/template/template.go b/internal/feed/template/template.go
index 7871e06..4c7b636 100644
--- a/internal/feed/template/template.go
+++ b/internal/feed/template/template.go
@@ -9,11 +9,11 @@ import (
"github.com/Necoro/feed2imap-go/pkg/log"
)
-func dict(v ...string) map[string]string {
- dict := map[string]string{}
+func dict(v ...interface{}) map[string]interface{} {
+ dict := make(map[string]interface{})
lenv := len(v)
for i := 0; i < lenv; i += 2 {
- key := v[i]
+ key := v[i].(string)
if i+1 >= lenv {
dict[key] = ""
continue