mirror of
https://github.com/landandair/Reticulum-Decentralized-File-Server.git
synced 2025-12-22 09:27:08 +00:00
- Fixed silly bug which prevented status request from working when there were elements in the list
This commit is contained in:
@@ -76,7 +76,7 @@ class RNSInterface:
|
||||
def get_status(self):
|
||||
status = {}
|
||||
for node_hash in self.desired_hash_translation_map:
|
||||
sources, attempts, next_allowed_time = self.desired_hash_translation_map[hash]
|
||||
sources, attempts, next_allowed_time = self.desired_hash_translation_map[node_hash]
|
||||
progress = 0
|
||||
if node_hash in self.hash_progress:
|
||||
progress = self.hash_progress[node_hash]
|
||||
|
||||
Reference in New Issue
Block a user