From 1189c2fab7b499aa4cbf2901b8dbcbd6f4f9aaad Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 23 Aug 2020 13:16:44 +1000 Subject: [PATCH] we've now flipped the boolean --- pkg/gui/credentials_panel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/gui/credentials_panel.go b/pkg/gui/credentials_panel.go index a5905da02..903f72a1c 100644 --- a/pkg/gui/credentials_panel.go +++ b/pkg/gui/credentials_panel.go @@ -72,6 +72,6 @@ func (gui *Gui) handleCredentialsPopup(cmdErr error) { // we are not logging this error because it may contain a password gui.createErrorPanel(errMessage) } else { - _ = gui.closeConfirmationPrompt(true) + _ = gui.closeConfirmationPrompt(false) } }