diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-03-17 14:57:05 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-03-17 14:57:05 -0400 |
commit | 9e28a02f6a4345ec7b5fdee68864610186f34e91 (patch) | |
tree | 866940888523f3cafa649697d088c4e016014662 /commands/cf.go | |
parent | bd71787e3fa9caf53f18dab37c4f37a2631b2354 (diff) | |
download | aerc-9e28a02f6a4345ec7b5fdee68864610186f34e91.tar.gz |
commands: handle case where no account selected
Diffstat (limited to 'commands/cf.go')
-rw-r--r-- | commands/cf.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/cf.go b/commands/cf.go index 83b757ce..d8b0508c 100644 --- a/commands/cf.go +++ b/commands/cf.go @@ -20,6 +20,9 @@ func ChangeFolder(aerc *widgets.Aerc, args []string) error { return errors.New("Usage: cf <folder>") } acct := aerc.SelectedAccount() + if acct == nil { + return errors.New("No account selected") + } previous := acct.Directories().Selected() if args[1] == "-" { if dir, ok := history[acct.Name()]; ok { |