mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-12-16 17:13:58 -05:00
fixed calling onion address testing only when editing is done, and updating of DNS in certificate
This commit is contained in:
parent
a1502c2742
commit
fc89ba0fb7
6 changed files with 12 additions and 18 deletions
|
|
@ -80,7 +80,7 @@ FriendServerControl::FriendServerControl(QWidget *parent)
|
|||
|
||||
QObject::connect(friendServerOnOff_CB,SIGNAL(toggled(bool)),this,SLOT(onOnOffClick(bool)));
|
||||
QObject::connect(torServerFriendsToRequest_SB,SIGNAL(valueChanged(int)),this,SLOT(onFriendsToRequestChanged(int)));
|
||||
QObject::connect(torServerAddress_LE,SIGNAL(textChanged(const QString&)),this,SLOT(onOnionAddressEdit(const QString&)));
|
||||
QObject::connect(torServerAddress_LE,SIGNAL(editingFinished()),this,SLOT(onOnionAddressEdit()));
|
||||
QObject::connect(torServerPort_SB,SIGNAL(valueChanged(int)),this,SLOT(onOnionPortEdit(int)));
|
||||
|
||||
QObject::connect(mConnectionCheckTimer,SIGNAL(timeout()),this,SLOT(checkServerAddress()));
|
||||
|
|
@ -130,7 +130,7 @@ void FriendServerControl::onOnionPortEdit(int)
|
|||
}
|
||||
}
|
||||
|
||||
void FriendServerControl::onOnionAddressEdit(const QString&)
|
||||
void FriendServerControl::onOnionAddressEdit()
|
||||
{
|
||||
// Setup timer to auto-check the friend server address
|
||||
mConnectionCheckTimer->stop();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue