aboutsummaryrefslogtreecommitdiff
path: root/commands/cf.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-17 14:57:05 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-17 14:57:05 -0400
commit9e28a02f6a4345ec7b5fdee68864610186f34e91 (patch)
tree866940888523f3cafa649697d088c4e016014662 /commands/cf.go
parentbd71787e3fa9caf53f18dab37c4f37a2631b2354 (diff)
commands: handle case where no account selected
Diffstat (limited to 'commands/cf.go')
-rw-r--r--commands/cf.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/cf.go b/commands/cf.go
index 83b757c..d8b0508 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 {