mirror of https://github.com/zlatinb/muwire
say never if timestamp is 0
parent
0448750491
commit
2f6cd311a0
|
@ -161,13 +161,13 @@ class TrustSubscriber {
|
||||||
int nGood = dis.readUnsignedShort()
|
int nGood = dis.readUnsignedShort()
|
||||||
for (int i = 0; i < nGood; i++) {
|
for (int i = 0; i < nGood; i++) {
|
||||||
Persona p = new Persona(dis)
|
Persona p = new Persona(dis)
|
||||||
good.add(p)
|
good.add(new TrustEntry(p,null))
|
||||||
}
|
}
|
||||||
|
|
||||||
int nBad = dis.readUnsignedShort()
|
int nBad = dis.readUnsignedShort()
|
||||||
for (int i = 0; i < nBad; i++) {
|
for (int i = 0; i < nBad; i++) {
|
||||||
Persona p = new Persona(dis)
|
Persona p = new Persona(dis)
|
||||||
bad.add(p)
|
bad.add(new TrustEntry(p, null))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue