about summary refs log tree commit diff stats
path: root/commands/msgview/next.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msgview/next.go')
-rw-r--r--commands/msgview/next.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/commands/msgview/next.go b/commands/msgview/next.go
index 978cf10..f9fb3d7 100644
--- a/commands/msgview/next.go
+++ b/commands/msgview/next.go
@@ -1,6 +1,8 @@
 package msgview
 
 import (
+	"time"
+
 	"git.sr.ht/~sircmpwn/aerc/commands/account"
 	"git.sr.ht/~sircmpwn/aerc/lib"
 	"git.sr.ht/~sircmpwn/aerc/widgets"
@@ -40,7 +42,7 @@ func (NextPrevMsg) Execute(aerc *widgets.Aerc, args []string) error {
 	lib.NewMessageStoreView(nextMsg, store, aerc.DecryptKeys,
 		func(view lib.MessageView, err error) {
 			if err != nil {
-				aerc.PushError(err.Error())
+				aerc.PushError(err.Error(), 10*time.Second)
 				return
 			}
 			nextMv := widgets.NewMessageViewer(acct, aerc.Config(), view)