diff options
Diffstat (limited to 'commands/account/connection.go')
-rw-r--r-- | commands/account/connection.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/account/connection.go b/commands/account/connection.go index 2704d9bb..3b30dbda 100644 --- a/commands/account/connection.go +++ b/commands/account/connection.go @@ -18,12 +18,12 @@ func (Connection) Aliases() []string { return []string{"connect", "disconnect"} } -func (Connection) Complete(aerc *app.Aerc, args []string) []string { +func (Connection) Complete(args []string) []string { return nil } -func (Connection) Execute(aerc *app.Aerc, args []string) error { - acct := aerc.SelectedAccount() +func (Connection) Execute(args []string) error { + acct := app.SelectedAccount() if acct == nil { return errors.New("No account selected") } |