This is an automated email from the git hooks/post-receive script.
richard pushed a change to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser.
from 608b7e33e943 fixup! Bug 4234: Use the Firefox Update Process for Tor Browser. new 091471b80061 fixup! Bug 4234: Use the Firefox Update Process for Tor Browser. new e58cd2a34978 fixup! Bug 40933: Add tor-launcher functionality
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: toolkit/components/tor-launcher/TorLauncherUtil.jsm | 2 +- toolkit/mozapps/update/UpdateService.jsm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser.
commit 091471b8006118afc93fcc23adbc54ff75a76e01 Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Wed Oct 19 17:50:15 2022 +0200
fixup! Bug 4234: Use the Firefox Update Process for Tor Browser.
Bug 41379 --- toolkit/mozapps/update/UpdateService.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/toolkit/mozapps/update/UpdateService.jsm b/toolkit/mozapps/update/UpdateService.jsm index d261a2d23d6c..501709856962 100644 --- a/toolkit/mozapps/update/UpdateService.jsm +++ b/toolkit/mozapps/update/UpdateService.jsm @@ -20,7 +20,7 @@ const { TorMonitorService } = ChromeUtils.import( function _shouldRegisterBootstrapObserver(errorCode) { return ( errorCode == PROXY_SERVER_CONNECTION_REFUSED && - !TorMonitorService.isBootstrapDone() && + !TorMonitorService.isBootstrapDone && TorMonitorService.ownsTorDaemon ); }
This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser.
commit e58cd2a34978cea971c451e1507990b7e6ecc013 Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Wed Oct 19 18:08:24 2022 +0200
fixup! Bug 40933: Add tor-launcher functionality
Bug 41379: Fixed the new tor-launcher on macOS --- toolkit/components/tor-launcher/TorLauncherUtil.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/toolkit/components/tor-launcher/TorLauncherUtil.jsm b/toolkit/components/tor-launcher/TorLauncherUtil.jsm index f606a4076bb7..798040fa3abf 100644 --- a/toolkit/components/tor-launcher/TorLauncherUtil.jsm +++ b/toolkit/components/tor-launcher/TorLauncherUtil.jsm @@ -340,7 +340,7 @@ class TorFile { static get dataDir() { if (!this._dataDir) { const profDir = Services.dirsvc.get("ProfD", Ci.nsIFile); - this.mDataDir = profDir.parent.parent; + this._dataDir = profDir.parent.parent; } return this._dataDir; }
tor-commits@lists.torproject.org