diff options
Diffstat (limited to 'commands/account/next-result.go')
-rw-r--r-- | commands/account/next-result.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/account/next-result.go b/commands/account/next-result.go index 06478f0c..ef4078da 100644 --- a/commands/account/next-result.go +++ b/commands/account/next-result.go @@ -18,15 +18,15 @@ func (NextPrevResult) Aliases() []string { return []string{"next-result", "prev-result"} } -func (NextPrevResult) Complete(aerc *app.Aerc, args []string) []string { +func (NextPrevResult) Complete(args []string) []string { return nil } -func (NextPrevResult) Execute(aerc *app.Aerc, args []string) error { +func (NextPrevResult) Execute(args []string) error { if len(args) > 1 { return nextPrevResultUsage(args[0]) } - acct := aerc.SelectedAccount() + acct := app.SelectedAccount() if acct == nil { return errors.New("No account selected") } |