mirror of
https://github.com/feather-wallet/feather.git
synced 2025-04-16 18:01:54 +00:00
prestium: fix i2p port range
This commit is contained in:
parent
3d7c88e10f
commit
ecfdb06e30
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ int Prestium::i2pPort()
|
|||
}
|
||||
|
||||
int port = portStr.toInt();
|
||||
if (port < 1 || port > 65535) {
|
||||
if (port < 1024 || port > 65535) {
|
||||
return PRESTIUM_DEFAULT_PORT;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue