Fixed encrypted uploads
parent
5baa048a4e
commit
1c44a514a5
|
@ -67,7 +67,7 @@ def upload_blocks_from_communicator(comm_inst: 'OnionrCommunicatorDaemon'):
|
|||
session = session_manager.add_session(bl)
|
||||
for _ in range(min(len(kv.get('onlinePeers')), 6)):
|
||||
try:
|
||||
if not block.Block(bl).isEncrypted():
|
||||
if not block.Block(bl).isEncrypted:
|
||||
peer = onlinepeers.pick_online_peer(kv)
|
||||
if peer in kv.get('plaintextDisabledPeers'):
|
||||
logger.info(f"Cannot upload plaintext block to peer that denies it {peer}") # noqa
|
||||
|
|
Loading…
Reference in New Issue