work on pm and fixed broken pex when none
This commit is contained in:
parent
87a9ecf426
commit
9ecd87595b
@ -360,8 +360,11 @@ class Core:
|
|||||||
payload = 'SELECT * FROM peers;'
|
payload = 'SELECT * FROM peers;'
|
||||||
peerList = []
|
peerList = []
|
||||||
for i in c.execute(payload):
|
for i in c.execute(payload):
|
||||||
if type(i[2]) != None:
|
try:
|
||||||
|
if len(i[2]) != 0:
|
||||||
peerList.append(i[2])
|
peerList.append(i[2])
|
||||||
|
except TypeError:
|
||||||
|
pass
|
||||||
peerList.append(self._crypto.pubKey)
|
peerList.append(self._crypto.pubKey)
|
||||||
conn.close()
|
conn.close()
|
||||||
return peerList
|
return peerList
|
||||||
|
Loading…
Reference in New Issue
Block a user