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;'
|
||||
peerList = []
|
||||
for i in c.execute(payload):
|
||||
if type(i[2]) != None:
|
||||
try:
|
||||
if len(i[2]) != 0:
|
||||
peerList.append(i[2])
|
||||
except TypeError:
|
||||
pass
|
||||
peerList.append(self._crypto.pubKey)
|
||||
conn.close()
|
||||
return peerList
|
||||
|
Loading…
Reference in New Issue
Block a user