mirror of
https://codeberg.org/r4v3r23/mysu.git
synced 2024-11-09 15:50:00 +00:00
Other fixes
This commit is contained in:
parent
384d440fe3
commit
269b910aaf
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ class Node {
|
|||
// Nodes are equal if they are the same host address:port & are on the same network
|
||||
override fun equals(other: Any?): Boolean {
|
||||
if (other !is Node) return false
|
||||
return host == other.host && address == other.address && rpcPort == other.rpcPort && networkType == other.networkType && username == other.username && password == other.password
|
||||
return trusted == other.trusted && host == other.host && address == other.address && rpcPort == other.rpcPort && networkType == other.networkType && username == other.username && password == other.password
|
||||
}
|
||||
|
||||
val isOnion: Boolean
|
||||
|
|
Loading…
Reference in a new issue