From 8dd3639576fac52b447b0c9bfd80660eeace4b34 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Sat, 5 Jun 2021 14:00:03 -0700 Subject: [PATCH] set ssoEnabled = true on network config if we get ERROR_NETWORK_AUTHENTICATION_REQUIRED --- node/Network.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/node/Network.hpp b/node/Network.hpp index e713a5451..33de16911 100644 --- a/node/Network.hpp +++ b/node/Network.hpp @@ -228,7 +228,8 @@ public: Mutex::Lock _l(_lock); _netconfFailure = NETCONF_FAILURE_AUTHENTICATION_REQUIRED; _authenticationURL = (url) ? url : ""; - } + _config.ssoEnabled = true; + } /** * Causes this network to request an updated configuration from its master node now