[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-115.6.0esr-13.5-1] 2 commits: fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in...



Title: GitLab

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
    fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
    
    Bug 42340: Stop reading the TorBridgeChanged data argument. This was
    always a string before, rather than a NodeData object.
    
  • 3a748654
    by Henry Wilkes at 2023-12-18T10:41:09+00:00
    fixup! Bug 40933: Add tor-launcher functionality
    
    Bug 42340: Stop adding #currentBridge to the TorBridgeChanged
    notification data, since it is converted into a string.
    

2 changed files:

Changes:

  • browser/components/torpreferences/content/connectionPane.js
    ... ... @@ -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": {
    

  • toolkit/components/tor-launcher/TorProvider.sys.mjs
    ... ... @@ -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
       }
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits