diff options
author | Moritz Poldrack <git@moritz.sh> | 2023-07-19 00:30:34 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-07-28 21:22:15 +0200 |
commit | 02eeed0b489870e3b6f0668c62e2f98ac6bb1d31 (patch) | |
tree | 1288a957e275c63cc376fee96b8a770eed64fe37 /commands | |
parent | 5062493d49c00983caba1a2c4cf3aacbb7d6ae71 (diff) | |
download | aerc-02eeed0b489870e3b6f0668c62e2f98ac6bb1d31.tar.gz |
split: ensure messagestore is available
Checking that a messagestore is connected, prevents crashes when aerc
has disconnected or :v?split is called without delay inside the
aerc-startup hook.
Reported-by: Ryan Roden-Corrent <ryan@rcorre.net>
Signed-off-by: Moritz Poldrack <git@moritz.sh>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands')
-rw-r--r-- | commands/account/split.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/commands/account/split.go b/commands/account/split.go index 6641641b..7a5acc47 100644 --- a/commands/account/split.go +++ b/commands/account/split.go @@ -30,6 +30,10 @@ func (Split) Execute(aerc *widgets.Aerc, args []string) error { if acct == nil { return errors.New("No account selected") } + store := aerc.SelectedAccount().Store() + if store == nil { + return errors.New("Cannot perform action. Messages still loading") + } n := 0 if acct.SplitSize() == 0 { if args[0] == "split" { |