From 0d7177f8d1d613f534643f08234c90ef16f9cdee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 27 May 2020 14:43:04 +0200 Subject: [PATCH] Fix showing "Authentication complete" notice after OAuth dance This was an accidental casualty of refactoring in 3aaa231cc5388ecef05a218314f308cb49fcf7f4 --- internal/config/config_setup.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/config/config_setup.go b/internal/config/config_setup.go index c22c07e35..2fc414a1b 100644 --- a/internal/config/config_setup.go +++ b/internal/config/config_setup.go @@ -110,6 +110,8 @@ func setupConfigFile(filename string) (Config, error) { return nil, err } + AuthFlowComplete() + // TODO cleaner error handling? this "should" always work given that we /just/ wrote the file... return ParseConfig(filename) }