aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/account-wizard.go
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/account-wizard.go')
-rw-r--r--widgets/account-wizard.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/account-wizard.go b/widgets/account-wizard.go
index 4b948a30..c1d237ef 100644
--- a/widgets/account-wizard.go
+++ b/widgets/account-wizard.go
@@ -20,6 +20,7 @@ import (
"git.sr.ht/~rjarry/aerc/config"
"git.sr.ht/~rjarry/aerc/lib/ui"
+ "git.sr.ht/~rjarry/aerc/log"
)
const (
@@ -144,6 +145,7 @@ func NewAccountWizard(aerc *Aerc) *AccountWizard {
once.Do(func() {
// debounce to ensure pasted passwords are pasted completely
go func() {
+ defer log.PanicHandler()
for !time.Now().After(lastChange.Add(10 * time.Millisecond)) {
<-time.After(10 * time.Millisecond)
}