commit 193bb6d1d1ec647b39d57b5e642782b8a7ba8211 Author: Richard Pospesel richard@torproject.org Date: Thu Nov 11 17:38:53 2021 +0100
fixup! Bug 40004: Convert tl-protocol to async.
resolves bug tor-browser#40679 --- src/components/tl-process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/tl-process.js b/src/components/tl-process.js index f45c17c..d52dcda 100644 --- a/src/components/tl-process.js +++ b/src/components/tl-process.js @@ -223,7 +223,7 @@ TorProcessService.prototype = { if (aSubject == this.mControlConnTimer) { - var haveConnection = this.mProtocolSvc.TorHaveControlConnection(); + var haveConnection = await this.mProtocolSvc.TorHaveControlConnection(); if (haveConnection) { this.mDidConnectToTorControlPort = true;
tbb-commits@lists.torproject.org