aboutsummaryrefslogtreecommitdiff
path: root/commands/msg/archive.go
diff options
context:
space:
mode:
authorKevin Kuehler <keur@ocf.berkeley.edu>2019-07-14 00:42:24 -0700
committerDrew DeVault <sir@cmpwn.com>2019-07-15 09:46:49 -0400
commit8bb115dbae928111be52ed422dafb1caf72a744c (patch)
tree204da9d491c9fecb87d8ff946fb0ac80a9ac2f85 /commands/msg/archive.go
parentd85f671bdf90dbdd725db88e5d6970630e36f9f1 (diff)
commands: Don't crash when store is nil
On a slow network connection, running these commands without this guard will cause aerc to panic. Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu>
Diffstat (limited to 'commands/msg/archive.go')
-rw-r--r--commands/msg/archive.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/commands/msg/archive.go b/commands/msg/archive.go
index fe391d2..63d6de0 100644
--- a/commands/msg/archive.go
+++ b/commands/msg/archive.go
@@ -41,11 +41,14 @@ func (_ Archive) Execute(aerc *widgets.Aerc, args []string) error {
if acct == nil {
return errors.New("No account selected")
}
+ store := widget.Store()
+ if store == nil {
+ return errors.New("Cannot perform action. Messages still loading")
+ }
msg, err := widget.SelectedMessage()
if err != nil {
return err
}
- store := widget.Store()
archiveDir := acct.AccountConfig().Archive
store.Next()
acct.Messages().Scroll()