| ... | ... | @@ -299,7 +299,7 @@ const TorSettings = (() => { | 
| 299 | 299 |          Services.obs.addObserver(this, TorTopics.ProcessIsReady);
 | 
| 300 | 300 |  
 | 
| 301 | 301 |          if (TorMonitorService.isRunning) {
 | 
| 302 |  | -          handleProcessReady();
 | 
|  | 302 | +          this.handleProcessReady();
 | 
| 303 | 303 |          }
 | 
| 304 | 304 |        }
 | 
| 305 | 305 |      },
 | 
| ... | ... | @@ -308,22 +308,22 @@ const TorSettings = (() => { | 
| 308 | 308 |      async observe(subject, topic, data) {
 | 
| 309 | 309 |        console.log(`TorSettings: Observed ${topic}`);
 | 
| 310 | 310 |  
 | 
| 311 |  | -      // once the tor daemon is ready, we need to apply our settings
 | 
| 312 |  | -      const handleProcessReady = async () => {
 | 
| 313 |  | -        // push down settings to tor
 | 
| 314 |  | -        await this.applySettings();
 | 
| 315 |  | -        console.log("TorSettings: Ready");
 | 
| 316 |  | -        Services.obs.notifyObservers(null, TorSettingsTopics.Ready);
 | 
| 317 |  | -      };
 | 
| 318 |  | -
 | 
| 319 | 311 |        switch (topic) {
 | 
| 320 | 312 |          case TorTopics.ProcessIsReady:
 | 
| 321 | 313 |            Services.obs.removeObserver(this, TorTopics.ProcessIsReady);
 | 
| 322 |  | -          await handleProcessReady();
 | 
|  | 314 | +          await this.handleProcessReady();
 | 
| 323 | 315 |            break;
 | 
| 324 | 316 |        }
 | 
| 325 | 317 |      },
 | 
| 326 | 318 |  
 | 
|  | 319 | +    // once the tor daemon is ready, we need to apply our settings
 | 
|  | 320 | +    async handleProcessReady() {
 | 
|  | 321 | +      // push down settings to tor
 | 
|  | 322 | +      await this.applySettings();
 | 
|  | 323 | +      console.log("TorSettings: Ready");
 | 
|  | 324 | +      Services.obs.notifyObservers(null, TorSettingsTopics.Ready);
 | 
|  | 325 | +    },
 | 
|  | 326 | +
 | 
| 327 | 327 |      // load our settings from prefs
 | 
| 328 | 328 |      loadFromPrefs() {
 | 
| 329 | 329 |        console.log("TorSettings: loadFromPrefs()");
 |