Pier Angelo Vendrame pushed to branch tor-browser-115.6.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
-
4152f12f
by Henry Wilkes at 2023-12-18T10:39:56+00:00
-
3a748654
by Henry Wilkes at 2023-12-18T10:41:09+00:00
2 changed files:
- browser/components/torpreferences/content/connectionPane.js
- toolkit/components/tor-launcher/TorProvider.sys.mjs
Changes:
... | ... | @@ -917,9 +917,7 @@ const gConnectionPane = (function () { |
917 | 917 | break;
|
918 | 918 | }
|
919 | 919 | case TorProviderTopics.BridgeChanged: {
|
920 | - if (data?.fingerprint !== this._currentBridgeId) {
|
|
921 | - this._checkConnectedBridge();
|
|
922 | - }
|
|
920 | + this._checkConnectedBridge();
|
|
923 | 921 | break;
|
924 | 922 | }
|
925 | 923 | case "intl:app-locales-changed": {
|
... | ... | @@ -1009,11 +1009,7 @@ export class TorProvider { |
1009 | 1009 | notify = true;
|
1010 | 1010 | }
|
1011 | 1011 | if (notify) {
|
1012 | - Services.obs.notifyObservers(
|
|
1013 | - null,
|
|
1014 | - TorProviderTopics.BridgeChanged,
|
|
1015 | - this.#currentBridge
|
|
1016 | - );
|
|
1012 | + Services.obs.notifyObservers(null, TorProviderTopics.BridgeChanged);
|
|
1017 | 1013 | }
|
1018 | 1014 | }
|
1019 | 1015 | }
|