Skip to content

Commit

Permalink
Merge pull request WalletWasabi#13178 from SuperJMN/fixes/use-correct…
Browse files Browse the repository at this point in the history
…-tor-setting

[UI] Use the correct setting for Tor when --UseTor parameter is used
  • Loading branch information
RolandUI authored Jun 17, 2024
2 parents 37537da + 5d5fd10 commit beb1815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WalletWasabi.Fluent/Models/UI/ApplicationSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public ApplicationSettings(string persistentConfigFilePath, PersistentConfig per
: FeeDisplayUnit.Satoshis;
_runOnSystemStartup = _uiConfig.RunOnSystemStartup;
_hideOnClose = _uiConfig.HideOnClose;
_useTor = Config.ObjectToTorMode(_startupConfig.UseTor);
_useTor = Config.ObjectToTorMode(_config.UseTor);
_terminateTorOnExit = _startupConfig.TerminateTorOnExit;
_downloadNewVersion = _startupConfig.DownloadNewVersion;

Expand Down

0 comments on commit beb1815

Please sign in to comment.