This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.4.0esr-12.0-2 in repository tor-browser.
The following commit(s) were added to refs/heads/tor-browser-102.4.0esr-12.0-2 by this push: new d3f95b228a5a fixup! Bug 40597: Implement TorSettings module d3f95b228a5a is described below
commit d3f95b228a5a6e831cb9fc1fe7ab653d01c0db59 Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Mon Nov 7 19:13:46 2022 +0100
fixup! Bug 40597: Implement TorSettings module
Bug 41429: Initialize TorConnect and TorSettings once --- browser/modules/TorConnect.jsm | 1 - browser/modules/TorSettings.jsm | 1 - 2 files changed, 2 deletions(-)
diff --git a/browser/modules/TorConnect.jsm b/browser/modules/TorConnect.jsm index 7c458a41c17d..cb09c1dbefef 100644 --- a/browser/modules/TorConnect.jsm +++ b/browser/modules/TorConnect.jsm @@ -1077,6 +1077,5 @@ const TorConnect = (() => { return redirectUrls; }, }; - retval.init(); return retval; })(); /* TorConnect */ diff --git a/browser/modules/TorSettings.jsm b/browser/modules/TorSettings.jsm index 4084ee71a1ce..97f1d07a5fef 100644 --- a/browser/modules/TorSettings.jsm +++ b/browser/modules/TorSettings.jsm @@ -778,6 +778,5 @@ const TorSettings = (() => { }; }, }; - self.init(); return self; })();