From 0dc28df4dbd3549fb0922996036d95fce1cf90cf Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Wed, 5 Oct 2022 17:41:33 -0500 Subject: [System:Network] Clear PAC loader when the load failed. --- system/network/base/nsPACMan.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/system/network/base/nsPACMan.cpp b/system/network/base/nsPACMan.cpp index 37d3e8b6b..f00c3cc43 100644 --- a/system/network/base/nsPACMan.cpp +++ b/system/network/base/nsPACMan.cpp @@ -474,6 +474,11 @@ nsPACMan::StartLoading() void nsPACMan::OnLoadFailure() { + // We have to clear the loader to indicate that we are currently not loading PAC. + if (mLoader) { + mLoader = nullptr; + } + int32_t minInterval = 5; // 5 seconds int32_t maxInterval = 300; // 5 minutes -- cgit v1.2.3