diff options
author | Moritz Poldrack <git@moritz.sh> | 2022-03-18 09:53:04 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-03-18 13:33:24 +0100 |
commit | d39da95f738f8b510f242995e73f6d67409d55e2 (patch) | |
tree | 9e7bf1cd959f5e5d6944f7a3f2d24c59e193d268 /config | |
parent | 22d65d5759ccb612456183ff28fe185bc495eac2 (diff) | |
download | aerc-d39da95f738f8b510f242995e73f6d67409d55e2.tar.gz |
go vet: not compatible with reflect.StructTag.Get
This commit fixes all occurrences of the abovementioned lint-error in
the codebase.
Signed-off-by: Moritz Poldrack <git@moritz.sh>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go index 24ec1b00..2120310d 100644 --- a/config/config.go +++ b/config/config.go @@ -153,7 +153,7 @@ type TriggersConfig struct { } type TemplateConfig struct { - TemplateDirs []string `ini:"template-dirs", delim:":"` + TemplateDirs []string `ini:"template-dirs" delim:":"` NewMessage string `ini:"new-message"` QuotedReply string `ini:"quoted-reply"` Forwards string `ini:"forwards"` |