browser(firefox): clear AuthCache when setting context proxy (#4793)

This commit is contained in:
Yury Semikhatsky 2020-12-21 15:54:15 -08:00 committed by GitHub
parent 3eef2548e4
commit b3e7838582
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -1,2 +1,2 @@
1223
Changed: lushnikov@chromium.org Thu Dec 17 21:58:44 MST 2020
1224
Changed: yurys@chromium.org Mon 21 Dec 2020 03:43:57 PM PST

View File

@ -593,6 +593,8 @@ class BrowserContext {
}
setProxy(proxy) {
// Clear AuthCache.
Services.obs.notifyObservers(null, "net:clear-active-logins");
this._proxy = proxy;
}