henry pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • toolkit/modules/TorSettings.sys.mjs
    ... ... @@ -537,13 +537,6 @@ class TorSettingsImpl {
    537 537
           const req = await fetch("chrome://global/content/pt_config.json");
    
    538 538
           const config = await req.json();
    
    539 539
           lazy.logger.debug("Loaded pt_config.json", config);
    
    540
    -      if ("meek-azure" in config.bridges) {
    
    541
    -        // Convert the meek-azure name to meek. tor-browser#44068.
    
    542
    -        // NOTE: no need to convert recommendedDefault since it is not meek.
    
    543
    -        lazy.logger.debug("Converting pt_config type from meek-azure to meek");
    
    544
    -        config.bridges.meek = config.bridges["meek-azure"];
    
    545
    -        delete config.bridges["meek-azure"];
    
    546
    -      }
    
    547 540
           this.#recommendedPT = config.recommendedDefault;
    
    548 541
           this.#builtinBridges = config.bridges;
    
    549 542
           for (const type in this.#builtinBridges) {