From 4fe6c24702485d02038439fa97e6d5494657bc3e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 23 Jun 2018 23:46:16 -0700 Subject: [PATCH] Fix subsequent SSL failures on Windows --- app/http/nvhttp.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/http/nvhttp.cpp b/app/http/nvhttp.cpp index 4a6ccdcd..f1674bb5 100644 --- a/app/http/nvhttp.cpp +++ b/app/http/nvhttp.cpp @@ -245,6 +245,10 @@ NvHTTP::openConnection(QUrl baseUrl, reply->abort(); } + // We must clear out cached authentication and connections or + // GFE will puke next time + m_Nam.clearAccessCache(); + // Handle error if (reply->error() != QNetworkReply::NoError) {