Fixed invalid dict key. Fixes #59.

pull/62/head
Mark Qvist 2024-09-17 14:50:32 +02:00
parent 03a02a9ebc
commit 112a45f270
1 changed files with 1 additions and 1 deletions

View File

@ -746,7 +746,7 @@ class NomadNetworkApp:
self.lxmf_sync_limit = None
if option == "required_stamp_cost":
value = self.config["node"]["node_name"]
value = self.config["client"][option]
if value.lower() == "none":
self.required_stamp_cost = None
else: