diff options
Diffstat (limited to 'commands/account/compose.go')
-rw-r--r-- | commands/account/compose.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go index fb37b231..5695bb7d 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -13,7 +13,6 @@ import ( "git.sr.ht/~rjarry/aerc/config" "git.sr.ht/~rjarry/aerc/lib/ui" "git.sr.ht/~rjarry/aerc/log" - "git.sr.ht/~rjarry/aerc/models" "git.sr.ht/~rjarry/aerc/widgets" "git.sr.ht/~sircmpwn/getopt" ) @@ -55,7 +54,7 @@ func (Compose) Execute(aerc *widgets.Aerc, args []string) error { composer, err := widgets.NewComposer(aerc, acct, acct.AccountConfig(), acct.Worker(), - template, &headers, models.OriginalMail{}) + template, &headers, nil) if err != nil { return err } |