fix the build (port IP validation in options to network refactoring)
This commit is contained in:
parent
b2a967cd0b
commit
be4d08b261
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in
|
|||
case ProxyIP:
|
||||
{
|
||||
// Use CAddress to parse and check IP
|
||||
CAddress addr(value.toString().toStdString() + ":1");
|
||||
CNetAddr addr(value.toString().toStdString());
|
||||
if (addr.IsValid())
|
||||
{
|
||||
addrProxy.SetIP(addr);
|
||||
|
|
Loading…
Reference in a new issue