mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
DebugInfoDialog: improve Tor status on Tails
This commit is contained in:
parent
a0a307f3bd
commit
ae1d6a2d1c
1 changed files with 9 additions and 1 deletions
|
@ -27,7 +27,15 @@ DebugInfoDialog::DebugInfoDialog(AppContext *ctx, QWidget *parent)
|
|||
|
||||
void DebugInfoDialog::updateInfo() {
|
||||
QString torStatus;
|
||||
if(m_ctx->isTorSocks)
|
||||
|
||||
// Special case for Tails because we know the status of the daemon by polling tails-tor-has-bootstrapped.target
|
||||
if(m_ctx->isTails) {
|
||||
if(m_ctx->tor->torConnected)
|
||||
torStatus = "Connected";
|
||||
else
|
||||
torStatus = "Disconnected";
|
||||
}
|
||||
else if(m_ctx->isTorSocks)
|
||||
torStatus = "Torsocks";
|
||||
else if(m_ctx->tor->localTor)
|
||||
torStatus = "Local (assumed to be running)";
|
||||
|
|
Loading…
Reference in a new issue