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; }